KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > nightlabs > editor2d > impl > RectangleDrawComponentImpl


1 /**
2  * <copyright>
3  * </copyright>
4  *
5  * $Id: RectangleDrawComponentImpl.java 1607 2005-08-23 16:04:49Z nozkiller $
6  */

7 package com.nightlabs.editor2d.impl;
8
9 import com.nightlabs.editor2d.RectangleDrawComponent;
10
11 public class RectangleDrawComponentImpl
12 extends ShapeDrawComponentImpl
13 implements RectangleDrawComponent
14 {
15
16   public RectangleDrawComponentImpl() {
17         super();
18     }
19
20 // public String getTypeName() {
21
// return ModelPlugin.getResourceString("type.rectangle");
22
// }
23
public String JavaDoc getTypeName() {
24     return "Rectangle";
25   }
26   
27 } //RectangleDrawComponentImpl
28
Popular Tags