java.awt.geom

Class Dimension2D

  • All Implemented Interfaces:
    Cloneable
    Direct Known Subclasses:
    Dimension

    public abstract class Dimension2D
    extends Object
    implements Cloneable
    The Dimension2D class is to encapsulate a width and a height dimension.

    This class is only the abstract superclass for all objects that store a 2D dimension. The actual storage representation of the sizes is left to the subclass.

    Since:
    1.2
    • Constructor Summary

      Constructors 
      Modifier Constructor and Description
      protected Dimension2D()
      This is an abstract class that cannot be instantiated directly.

        

    • Method Summary

      Methods 
      Modifier and Type Method and Description
      Object clone()
      Creates a new object of the same class as this object.
      abstract double getHeight()
      Returns the height of this Dimension in double precision.
      abstract double getWidth()
      Returns the width of this Dimension in double precision.
      void setSize(Dimension2D d)
      Sets the size of this Dimension2D object to match the specified size.
      abstract void setSize(double width, double height)
      Sets the size of this Dimension object to the specified width and height.

        

    • Constructor Detail

      • Dimension2D

        protected Dimension2D()
        This is an abstract class that cannot be instantiated directly. Type-specific implementation subclasses are available for instantiation and provide a number of formats for storing the information necessary to satisfy the various accessor methods below.
        Since:
        1.2
        See Also:
        Dimension
    • Method Detail

      • getWidth

        public abstract double getWidth()
        Returns the width of this Dimension in double precision.
        Returns:
        the width of this Dimension.
        Since:
        1.2
      • getHeight

        public abstract double getHeight()
        Returns the height of this Dimension in double precision.
        Returns:
        the height of this Dimension.
        Since:
        1.2
      • setSize

        public abstract void setSize(double width,
                   double height)
        Sets the size of this Dimension object to the specified width and height. This method is included for completeness, to parallel the getSize method of Component.
        Parameters:
        width - the new width for the Dimension object
        height - the new height for the Dimension object
        Since:
        1.2
      • setSize

        public void setSize(Dimension2D d)
        Sets the size of this Dimension2D object to match the specified size. This method is included for completeness, to parallel the getSize method of Component.
        Parameters:
        d - the new size for the Dimension2D object
        Since:
        1.2
      • clone

        public Object clone()
        Creates a new object of the same class as this object.
        Overrides:
        clone in class Object
        Returns:
        a clone of this instance.
        Throws:
        OutOfMemoryError - if there is not enough memory.
        Since:
        1.2
        See Also:
        Cloneable

Traduction non disponible

Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.

Document créé le 30/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/awt/geom/Dimension2D.html

L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.

Références

  1. Consulter le document html Langue du document :fr Manuel PHP : https://docs.oracle.com, Dimension2D

Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.

Table des matières Haut