Examples of description()


Examples of com.cloudbees.sdk.cli.BeesCommand.description()

            if (beesCommand.experimental() && !all)
                return;

            commandProperties.setGroup(beesCommand.group());
            if (beesCommand.description().length() > 0)
                commandProperties.setDescription(beesCommand.description());
            commandProperties.setPriority(beesCommand.priority());
            if (beesCommand.pattern().length() > 0)
                commandProperties.setPattern(beesCommand.pattern());
            commandProperties.setExperimental(beesCommand.experimental());
View Full Code Here

Examples of com.cloudhopper.commons.util.annotation.MetaField.description()

                    } else {
                        info.value = info.actualValue.toString();
                    }
                   
                    // add our annotated description
                    info.description = metaField.description();

                    // if this is recursive, we need to check of the subvalues are actually wanted instead...
                    // if the actual value is null though, we know the sub-values are null...
                    if (recursive) {
                        // see if there are any MetaFields in the sub-object
View Full Code Here

Examples of com.cosmo.orm.annotations.CormObject.description()

      this.name = ct.formName();

      // Obtiene la lista de campos y los mapea a un grupo
      group = new FormFieldset("");
      group.setTitle(ct.title());
      group.setDescription(ct.description());
      for (Method method : ormClass.getMethods())
      {
         cfg = method.getAnnotation(CormObjectField.class);

         if (cfg != null && !cfg.isAutogenerated())
View Full Code Here

Examples of com.dtolabs.rundeck.plugins.util.PropertyBuilder.description()

            pbuild.title(annotation.title());
        } else {
            pbuild.title(name);
        }

        pbuild.description(annotation.description());

        if (null != annotation.defaultValue() && !"".equals(annotation.defaultValue())) {
            pbuild.defaultValue(annotation.defaultValue());
        }
        pbuild.required(annotation.required());
View Full Code Here

Examples of com.findwise.hydra.stage.Stage.description()

public class WikiPrinter {
  public static void printWikiTable(List<Class<?>> classes) {
    System.out.println("^ Name ^ Package ^ Description ^ Parameters ^");
    for(Class<?> c : classes) {
      Stage s = c.getAnnotation(Stage.class);
      System.out.println("| "+c.getSimpleName() + " | " + c.getPackage().getName()+ " | "+s.description()+" | "+getParametersString(c)+" | ");
    }
  }

  public static String getParametersString(Class<?> c) {
    ArrayList<String> list = new ArrayList<String>();
View Full Code Here

Examples of com.google.appengine.tools.mapreduce.BigQueryDataField.description()

   * @param field - {@link Field} of a class.
   * @return {@link BigQueryDataField} annotation description. Null if annotation is not present.
   */
  public static String getFieldDescription(Field field) {
    BigQueryDataField bq = field.getAnnotation(BigQueryDataField.class);
    if (bq == null || bq.description().equals("")) {
      return null;
    }
    return bq.description();
  }

View Full Code Here

Examples of com.google.caliper.model.ArbitraryMeasurement.description()

      @WorkerOptions Map<String, String> workerOptions) {
    super(benchmark, method);
    this.options = new Options(workerOptions);
    ArbitraryMeasurement annotation = method.getAnnotation(ArbitraryMeasurement.class);
    this.unit = annotation.units();
    this.description = annotation.description();
  }

  @Override public void preMeasure() throws Exception {
    if (options.gcBeforeEach) {
      Util.forceGc();
View Full Code Here

Examples of com.google.gwt.chrome.crx.client.Extension.ManifestInfo.description()

  private static ExtensionArtifact getSpecification(TreeLogger logger,
      GeneratorContext context, JClassType userType)
      throws UnableToCompleteException {
    final ManifestInfo spec = userType.getAnnotation(Extension.ManifestInfo.class);
    if (spec != null) {
      return new ExtensionArtifact(spec.name(), spec.description(),
          spec.version(), spec.permissions(), spec.updateUrl(),
          createIconResources(logger, context, userType, spec.icons()),
          spec.publicKey());
    }
View Full Code Here

Examples of com.greentea.relaxation.jnmf.parameters.annotations.Parameter.description()

            Object maxValue = castValueToClass(annotation.max(), clazz);

            Method getter = resolveGetter(subject.getClass(), field);
            Method setter = resolveSetter(subject.getClass(), field);

            String description = StringUtils.defaultString(annotation.description());

            com.greentea.relaxation.jnmf.parameters.Parameter parameter = null;

            if (clazz.equals(File.class))
            {
View Full Code Here

Examples of com.groupon.odo.plugin.ResponseOverride.description()

                        // Convert to the right type and get annotation information
                        if (annotation.annotationType().toString().endsWith(Constants.PLUGIN_RESPONSE_OVERRIDE_CLASS)) {
                            ResponseOverride roAnnotation = (ResponseOverride)annotation;
                            newMethod.setHttpCode(roAnnotation.httpCode());
                            description = roAnnotation.description();
                            argNames = roAnnotation.parameters();
                            newMethod.setOverrideVersion(1);
                        }
                        else if(annotation.annotationType().toString().endsWith(Constants.PLUGIN_RESPONSE_OVERRIDE_V2_CLASS)) {
                            com.groupon.odo.plugin.v2.ResponseOverride roAnnotation = (com.groupon.odo.plugin.v2.ResponseOverride) annotation;
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.