KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sape > carbon > services > console > ConfiguratorConfiguration


1 package org.sape.carbon.services.console;
2
3
4 import org.sape.carbon.core.config.Configuration;
5
6 /**
7  * <P>This is the base template for a new Component Configuration.</P>
8  *
9  * Copyright 2002 Sapient
10  * @since carbon 1.0
11  * @author Greg Hinkle, January 2002
12  * @version $Revision: 1.3 $($Author: ghinkl $ / $Date: 2003/04/04 01:11:49 $)
13  */

14 public interface ConfiguratorConfiguration extends Configuration {
15
16     int getX();
17     void setX(int value);
18     int getY();
19     void setY(int value);
20     int getWidth();
21     void setWidth(int value);
22     int getHeight();
23     void setHeight(int value);
24
25 }
26
Popular Tags