01: /*
02: * ETLObject.java
03: *
04: * Created on April 18, 2006, 7:01 AM
05: *
06: * To change this template, choose Tools | Template Manager
07: * and open the template in the editor.
08: */
09:
10: package org.netbeans.modules.etl.model;
11:
12: /**
13: *
14: * @author Ahimanikya Satapathy
15: */
16: public interface ETLObject {
17:
18: public String getName();
19:
20: public String getObjectId();
21:
22: public void setName(String value);
23: }
|