View Javadoc

1   package fr.in2p3.jsaga.impl.attributes;
2   
3   import org.ogf.saga.error.*;
4   
5   /* ***************************************************
6    * *** Centre de Calcul de l'IN2P3 - Lyon (France) ***
7    * ***             http://cc.in2p3.fr/             ***
8    * ***************************************************
9    * File:   AttributeVector
10   * Author: Sylvain Reynaud (sreynaud@in2p3.fr)
11   * ***************************************************
12   * Description:                                      */
13  
14  /**
15   *
16   */
17  public interface AttributeVector extends Attribute {
18      public void setValues(String[] values) throws NotImplementedException, IncorrectStateException, PermissionDeniedException, BadParameterException;
19      public String[] getValues() throws NotImplementedException, IncorrectStateException, NoSuccessException;
20  }