Examples of description()


Examples of com.intellij.codeInsight.daemon.impl.HighlightInfo.Builder.description()

    @Override
    public HighlightInfo createHighlightInfo(@NotNull HighlightInfoType type, @NotNull PsiElement element, @Nullable String message, @Nullable TextAttributes attributes) {
        Builder builder = HighlightInfo.newHighlightInfo(type)
                .range(element);
        if(message != null) {
            builder.description(message);
        }
        if(attributes != null) {
            builder.textAttributes(attributes);
        }
        return builder.create();
View Full Code Here

Examples of com.kenai.constantine.platform.Errno.description()

    public RaiseException newErrnoFromInt(int errno) {
        Errno errnoObj = Errno.valueOf(errno);
        if (errnoObj == null) {
            return newSystemCallError("Unknown Error (" + errno + ")");
        }
        String message = errnoObj.description();
        return newErrnoFromInt(errno, message);
    }

    public RaiseException newTypeError(String message) {
        return newRaiseException(getTypeError(), message);
View Full Code Here

Examples of com.meapsoft.composers.Composer.description()

      //create the composer itself (with empty constructor)
      Composer comp = (Composer)(Class.forName("com.meapsoft.composers." + className).newInstance());
     
      //save the data here
      mName = comp.name();
      mDescription = comp.description();
     
      //System.out.println("mDescription: " + mDescription);
     
      //set our text here
      this.setText(mName);
View Full Code Here

Examples of com.meapsoft.featextractors.FeatureExtractor.description()

       
        try
        {
          String name = "com.meapsoft.featextractors." + (String)v.elementAt(i);
          f = (FeatureExtractor)(Class.forName(name).newInstance());
          featureDescriptions.add(f.description());
        }
        catch (Exception e)
        {
          GUIUtils.ShowDialog("", GUIUtils.MESSAGE, meapsoftGUI.jframe)
                    //ShowDialog(e, "", FATAL_ERROR);
View Full Code Here

Examples of com.mongodb.MongoClientOptions.Builder.description()

      builder.connectionsPerHost(options.getConnectionsPerHost());
      builder.connectTimeout(options.getConnectTimeout());
      builder.cursorFinalizerEnabled(options.isCursorFinalizerEnabled());
      builder.dbDecoderFactory(options.getDbDecoderFactory());
      builder.dbEncoderFactory(options.getDbEncoderFactory());
      builder.description(options.getDescription());
      builder.maxWaitTime(options.getMaxWaitTime());
      builder.readPreference(options.getReadPreference());
      builder.socketFactory(options.getSocketFactory());
      builder.socketKeepAlive(options.isSocketKeepAlive());
      builder.socketTimeout(options.getSocketTimeout());
View Full Code Here

Examples of com.opengamma.core.config.Config.description()

        Class<?> configType = configValueAnnotation.searchType();
        if (configType == Object.class) {
          configType = configClass;
        }
        // extract description
        String description = configValueAnnotation.description();
        if (description.length() == 0) {
          description = configType.getSimpleName();
        }
        // store
        Class<?> old = result.put(configType.getSimpleName(), configType);
View Full Code Here

Examples of com.planet_ink.coffee_web.http.HTTPStatus.description()

  public void setStatusCode(int httpStatusCode)
  {
    statusCode = httpStatusCode;
    HTTPStatus status = HTTPStatus.find(httpStatusCode);
    if(status!=null)
      statusString = status.description();
    else
      statusString = "Unknown";
  }

  @Override
View Full Code Here

Examples of com.saasovation.agilepm.domain.model.product.Product.description()

        assertNotNull(savedProduct);
        assertEquals(product.tenantId(), savedProduct.tenantId());
        assertEquals(product.productId(), savedProduct.productId());
        assertEquals(product.productOwnerId(), savedProduct.productOwnerId());
        assertEquals("My Product", savedProduct.name());
        assertEquals("My product, which is my product.", savedProduct.description());
        assertEquals(DiscussionAvailability.NOT_REQUESTED, savedProduct.discussion().availability());
    }

    public void testRemove() throws Exception {
        TenantId tenantId = new TenantId("T12345");
View Full Code Here

Examples of com.saasovation.agilepm.domain.model.product.release.Release.description()

            .publish(new ProductReleaseScheduled(
                    release.tenantId(),
                    release.productId(),
                    release.releaseId(),
                    release.name(),
                    release.description(),
                    release.begins(),
                    release.ends()));

        return release;
    }
View Full Code Here

Examples of com.saasovation.collaboration.domain.model.calendar.Calendar.description()

                    .calendarOfId(
                            calendar.tenant(),
                            calendar.calendarId());

        assertNotNull(changedCalendar);
        assertFalse(calendar.description().equals(changedCalendar.description()));
        assertEquals("This is a changed description.", changedCalendar.description());
    }

    public void testCreateCalendar() throws Exception {
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.