Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

ChildAnchor.java 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* ====================================================================
  2. Licensed to the Apache Software Foundation (ASF) under one or more
  3. contributor license agreements. See the NOTICE file distributed with
  4. this work for additional information regarding copyright ownership.
  5. The ASF licenses this file to You under the Apache License, Version 2.0
  6. (the "License"); you may not use this file except in compliance with
  7. the License. You may obtain a copy of the License at
  8. http://www.apache.org/licenses/LICENSE-2.0
  9. Unless required by applicable law or agreed to in writing, software
  10. distributed under the License is distributed on an "AS IS" BASIS,
  11. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. See the License for the specific language governing permissions and
  13. limitations under the License.
  14. ==================================================================== */
  15. package org.apache.poi.ss.usermodel;
  16. /**
  17. * Common interface for anchors.<p>
  18. *
  19. * An anchor is what specifics the position of a shape within a client object
  20. * or within another containing shape.
  21. *
  22. * @since POI 3.16-beta2
  23. */
  24. public interface ChildAnchor {
  25. /**
  26. * @return x coordinate of the left up corner
  27. */
  28. int getDx1();
  29. /**
  30. * @param dx1 x coordinate of the left up corner
  31. */
  32. void setDx1(int dx1);
  33. /**
  34. * @return y coordinate of the left up corner
  35. */
  36. int getDy1();
  37. /**
  38. * @param dy1 y coordinate of the left up corner
  39. */
  40. void setDy1(int dy1);
  41. /**
  42. * @return y coordinate of the right down corner
  43. */
  44. int getDy2();
  45. /**
  46. * @param dy2 y coordinate of the right down corner
  47. */
  48. void setDy2(int dy2);
  49. /**
  50. * @return x coordinate of the right down corner
  51. */
  52. int getDx2();
  53. /**
  54. * @param dx2 x coordinate of the right down corner
  55. */
  56. void setDx2(int dx2);
  57. }