org.tango.server.annotation
Annotation Type Pipe


@Target(value={FIELD,METHOD})
@Retention(value=RUNTIME)
public @interface Pipe

Declare a pipe of a tango device.

Example:
 @Pipe
 private PipeValue myPipe;
 
 public PipeValue getMyPipe(){..};
 

Author:
ABEILLE

Optional Element Summary
 java.lang.String description
           
 int displayLevel
          The command display level.
 java.lang.String label
           
 java.lang.String name
          Default name is field name
 

name

public abstract java.lang.String name
Default name is field name

Returns:
The attribute name.
Default:
""

displayLevel

public abstract int displayLevel
The command display level. see @link DispLevel

Returns:
display level
Default:
0

label

public abstract java.lang.String label
Default:
""

description

public abstract java.lang.String description
Default:
""


Copyright © 2012-2017. All Rights Reserved.