Changeset 419 for tapas/domain


Ignore:
Timestamp:
03/19/12 17:06:58 (12 years ago)
Author:
rboipsl
Message:

creation listes dans form
creation class Observatory

Location:
tapas/domain
Files:
1 added
2 edited
1 copied
1 moved

Legend:

Unmodified
Added
Removed
  • tapas/domain/Domain.iml

    r385 r419  
    1111    <orderEntry type="sourceFolder" forTests="false" /> 
    1212    <orderEntry type="library" name="lib_common" level="project" /> 
     13    <orderEntry type="module" module-name="Common" /> 
    1314  </component> 
    1415</module> 
  • tapas/domain/interface/com/ether/FileFormat.java

    r416 r419  
    1 package com.ether.user; 
     1package com.ether; 
    22 
    33/** 
    4  * User: vmipsl 
    5  * Date: 12 march 2012 
     4 * User: rboipsl 
     5 * Date: 16 march 2012 
    66 */ 
    7 public enum UserRole 
     7public enum FileFormat 
    88{ 
    9     USER, 
    10     ADMINISTRATOR, 
     9    ASCII, 
     10    FITS, 
     11    NETCDF 
    1112} 
  • tapas/domain/interface/com/ether/tapas/Observatory.java

    r400 r419  
    44 
    55/** 
    6  * @author vmipsl 
    7  * @date 08 march 2012 
     6 * @author rboipsl 
     7 * @date 19 march 2012 
    88 */ 
    99public class Observatory 
    1010{ 
     11    @NotNull 
     12    public String getId() 
     13    { 
     14        return _id; 
     15    } 
     16 
     17    public void setId( @NotNull final String id ) 
     18    { 
     19        _id = id; 
     20    } 
     21 
    1122    @NotNull 
    1223    public String getName() 
     
    5465 
    5566    @NotNull 
     67    private String _id; 
     68    @NotNull 
    5669    private String _name; 
    5770    @NotNull 
Note: See TracChangeset for help on using the changeset viewer.