View Javadoc

1   package fr.in2p3.jsaga.impl.attributes;
2   
3   /* ***************************************************
4   * *** Centre de Calcul de l'IN2P3 - Lyon (France) ***
5   * ***             http://cc.in2p3.fr/             ***
6   * ***************************************************
7   * File:   Attribute
8   * Author: Sylvain Reynaud (sreynaud@in2p3.fr)
9   * Date:   18 janv. 2008
10  * ***************************************************
11  * Description:                                      */
12  /**
13   *
14   */
15  public interface Attribute extends Cloneable {
16      /** using ';' instead of ',' because ',' can be used in file paths */
17      public static final String SEPARATOR = ";";
18  
19      public String getKey();
20      public boolean isReadOnly();
21  
22      public boolean equals(Object o);
23      public Attribute clone() throws CloneNotSupportedException;
24  }