]> SALOME platform Git repositories - tools/siman.git/blob - Workspace/Siman-Common/src/org/splat/kernel/Name.java
Salome HOME
379e0ac552b3dde357088e9fe0eddb44600ffa76
[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-2015
8  */
9
10
11 public interface Name {
12
13     public long    getIndex ();
14     public String toString ();
15 }