Salome HOME
Id now is Long instead of Integer. First unit test is created. hibernate-3.5.jar...
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / kernel / Name.java
1 package org.splat.kernel;
2 /**
3  * Interface implemented by the User class for allowing the application to manipulate lists of user names mixing
4  * real users and generic users such as Author of something or Responsible of that.
5  * 
6  * @author    Daniel Brunier-Coulin
7  * @copyright OPEN CASCADE 2012
8  */
9
10
11 public interface Name {
12
13     public long    getIndex ();
14     public String toString ();
15 }