Example #1
0
 /// <summary>
 /// Sets the size of this <code>Dimension2D</code> object to
 /// match the specified size.
 /// </summary>
 public void setSize(Dimension2D @d)
 {
 }
 /// <summary>
 /// Sets the location and size of the framing rectangle of this
 /// <code>Shape</code> to the specified <A HREF="../../../java/awt/geom/Point2D.html" title="class in java.awt.geom"><CODE>Point2D</CODE></A> and
 /// <A HREF="../../../java/awt/geom/Dimension2D.html" title="class in java.awt.geom"><CODE>Dimension2D</CODE></A>, respectively.
 /// </summary>
 public void setFrame(Point2D @loc, Dimension2D @size)
 {
 }
Example #3
0
 /// <summary>
 /// Sets the location and size of the framing rectangle of this
 /// <code>Shape</code> to the specified <seealso cref="Point2D"/> and
 /// <seealso cref="Dimension2D"/>, respectively.  The framing rectangle is used
 /// by the subclasses of <code>RectangularShape</code> to define
 /// their geometry. </summary>
 /// <param name="loc"> the specified <code>Point2D</code> </param>
 /// <param name="size"> the specified <code>Dimension2D</code> </param>
 /// <seealso cref= #getFrame
 /// @since 1.2 </seealso>
 public virtual void SetFrame(Point2D loc, Dimension2D size)
 {
     SetFrame(loc.X, loc.Y, size.Width, size.Height);
 }
		/// <summary>
		/// Sets the size of this <code>Dimension2D</code> object to
		/// match the specified size.
		/// </summary>
		public void setSize(Dimension2D @d)
		{
		}
		/// <summary>
		/// Sets the location and size of the framing rectangle of this
		/// <code>Shape</code> to the specified <A HREF="../../../java/awt/geom/Point2D.html" title="class in java.awt.geom"><CODE>Point2D</CODE></A> and
		/// <A HREF="../../../java/awt/geom/Dimension2D.html" title="class in java.awt.geom"><CODE>Dimension2D</CODE></A>, respectively.
		/// </summary>
		public void setFrame(Point2D @loc, Dimension2D @size)
		{
		}