Examples of documentation()


Examples of jade.content.onto.annotations.Slot.documentation()

            }
            if (slotAnnotation.permittedValues().length > 0) {
              permittedValues = slotAnnotation.permittedValues();
            }
            if (!Slot.NULL.equals(slotAnnotation.documentation())) {
              documentation = slotAnnotation.documentation();
            }
            manageAsSerializable = slotAnnotation.manageAsSerializable();
            mandatory = slotAnnotation.mandatory();
          }
          // if present, use getter @AggregateSlot annotation data
View Full Code Here

Examples of play.core.Router.Routes.documentation()

  protected List<Tuple3<String, String, String>> getPlayRoutes() {
    play.api.Application realApp = _app.getWrappedApplication();
    Option<Routes> routes = realApp.routes();
    if (routes.isDefined()) {
      Routes r = routes.get();
      Seq<Tuple3<String, String, String>> docs = r.documentation();
      return scala.collection.JavaConversions.seqAsJavaList(docs);
    }
    return null;
  }
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.