/* *+------------------------------------------------------------------------+ *| Licensed Materials - Property of IBM | *| (C) Copyright IBM Corp. 2004. All Rights Reserved. | *| | *| US Government Users Restricted Rights - Use, duplication or disclosure | *| restricted by GSA ADP Schedule Contract with IBM Corp. | *+------------------------------------------------------------------------+ */ package org.eclipse.gmf.runtime.notation; /** * * A representation of the model object 'Size'. *

* The size constraint specifies the extents of a node *

* * *

* The following features are supported: *

*

* * @see org.eclipse.gmf.runtime.notation.NotationPackage#getSize() * @model * @generated */ /* * @canBeSeenBy %partners */ public interface Size extends LayoutConstraint { /** * Returns the value of the 'Width' attribute. * The default value is "-1". * * * @return the value of the 'Width' attribute. * @see #setWidth(int) * @see org.eclipse.gmf.runtime.notation.NotationPackage#getSize_Width() * @model default="-1" * @generated */ int getWidth (); /** * Returns the value of the 'Height' attribute. * The default value is "-1". * * * @return the value of the 'Height' attribute. * @see #setHeight(int) * @see org.eclipse.gmf.runtime.notation.NotationPackage#getSize_Height() * @model default="-1" * @generated */ int getHeight (); } // Size