Examples of visible()


Examples of com.almende.eve.agent.annotation.Access.visible()

    Access access = method.getAnnotation(Access.class);
    return Modifier.isPublic(mod) &&
        hasNamedParams(method, requestParams) &&
        (access == null ||
        (access.value() != AccessType.UNAVAILABLE &&
         access.visible()));
  }
 
  /**
   * Test whether a method has named parameters
   * @param annotatedMethod
View Full Code Here

Examples of com.jengine.orm.model.field.Attribute.visible()

        for (Method method : cls.getMethods()) {
            if (method.isAnnotationPresent(Attribute.class)) {
                Attribute attribute = method.getAnnotation(Attribute.class);
                properties.put(attribute.name(),
                        new ModelProperty(method.getName(), method.getReturnType(),
                                map("verbose", attribute.verbose(), "visible", attribute.visible()))
                );
            }
        }

        return properties;
View Full Code Here

Examples of org.eclipse.sapphire.ui.diagram.editor.ShapeFactoryPart.visible()

 
  public void refreshChildren()
  {
    List<ShapePresentation> refreshedChildren = new ArrayList<ShapePresentation>();
    ShapeFactoryPart shapeFactoryPart = (ShapeFactoryPart) part();
    if (shapeFactoryPart.visible())
    {
      for (ShapePart shapePart : shapeFactoryPart.getChildren())
      {
        ShapePresentation childPresentation = getChildShapePresentation(shapePart);
        if (childPresentation == null)
View Full Code Here

Examples of org.eclipse.sapphire.ui.forms.MasterDetailsContentNodeList.visible()

           
            public Object[] getElements( final Object inputElement )
            {
                final MasterDetailsContentNodeList nodes = outline.getRoot().nodes();
                attach( nodes );
                return nodes.visible().toArray();
            }
       
            public Object[] getChildren( final Object parentElement )
            {
                final MasterDetailsContentNodeList nodes = ( (MasterDetailsContentNodePart) parentElement ).nodes();
View Full Code Here

Examples of org.eclipse.sapphire.ui.forms.MasterDetailsContentNodeList.visible()

       
            public Object[] getChildren( final Object parentElement )
            {
                final MasterDetailsContentNodeList nodes = ( (MasterDetailsContentNodePart) parentElement ).nodes();
                attach( nodes );
                return nodes.visible().toArray();
            }
       
            public Object getParent( final Object element )
            {
                return ( (MasterDetailsContentNodePart) element ).getParentNode();
View Full Code Here

Examples of org.eclipse.sapphire.ui.forms.MasterDetailsContentNodeList.visible()

       
            public boolean hasChildren( final Object parentElement )
            {
                final MasterDetailsContentNodeList nodes = ( (MasterDetailsContentNodePart) parentElement ).nodes();
                attach( nodes );
                return ! nodes.visible().isEmpty();
            }
       
            public void inputChanged( final Viewer viewer,
                                      final Object oldInput,
                                      final Object newInput )
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.