Examples of description()


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

                    .calendarEntryOfId(
                            calendarEntry.tenant(),
                            calendarEntry.calendarEntryId());

        assertNotNull(changedCalendarEntry);
        assertEquals("A changed description.", changedCalendarEntry.description());
        assertEquals("A changed location.", changedCalendarEntry.location());
        assertEquals(nextWeek, changedCalendarEntry.timeSpan().begins());
        assertEquals(nextWeekAndOneHour, changedCalendarEntry.timeSpan().ends());
        assertTrue(changedCalendarEntry.repetition().repeats().isDoesNotRepeat());
        assertTrue(changedCalendarEntry.alarm().alarmUnitsType().isHours());
View Full Code Here

Examples of com.saasovation.collaboration.domain.model.forum.Forum.description()

    public void testChangeForumDescription() throws Exception {

        Forum forum = this.forumAggregate();

        assertFalse("A changed description.".equals(forum.description()));

        DomainRegistry.forumRepository().save(forum);

        forumApplicationService
            .changeForumDescription(
View Full Code Here

Examples of com.sefer.dragonfly.client.core.domain.mbean.annotation.CMbeanAttribute.description()

        CMbeanAttribute annotation = field
            .getAnnotation(CMbeanAttribute.class);
        if (annotation != null) {
          ModelMBeanAttributeInfo info = new ModelMBeanAttributeInfo(
              field.getName(), field.getType().getName(),
              annotation.description(), annotation.isReadable(),
              annotation.isWriteable(), annotation.isIs());
          lists.add(info);
        }
      }
    }
View Full Code Here

Examples of com.sefer.dragonfly.client.core.domain.mbean.annotation.CMbeanMethod.description()

                  param.getName(), "");
            }
          }

          ModelMBeanOperationInfo info = new ModelMBeanOperationInfo(
              method.getName(), annotation.description(),
              signatures, method.getReturnType().getName(),
              annotation.impact());
          lists.add(info);
        }
      }
View Full Code Here

Examples of com.smartcodeltd.jenkinsci.plugins.buildmonitor_acceptance.pageobjects.bfa.NewFailureCause.description()

            // transition

            NewFailureCause failureCause = NewFailureCause.screen();
            add(enter(name, failureCause.name()));
            add(enter(description, failureCause.description()));

            add(click(failureCause.addIndication()));
            add(click(failureCause.buildLogIndication()));
            add(enter(pattern, failureCause.pattern()));
View Full Code Here

Examples of com.sun.corba.se.impl.corba.TypeCodeImpl.description()

        System.out.println("typeMap = {");
        Iterator i = typeMap.keySet().iterator();
        while (i.hasNext()) {
            Integer pos = (Integer)i.next();
            TypeCodeImpl tci = (TypeCodeImpl)typeMap.get(pos);
            System.out.println("  key = " + pos.intValue() + ", value = " + tci.description());
        }
        System.out.println("}");
    }
}
View Full Code Here

Examples of com.sun.jdi.VirtualMachine.description()

            System.out.println("java.vm.name = " + vm.name());

            System.out.println("java.version = " + vm.version());

            System.out.println(vm.description());

            vm.resume();

            vm.dispose();
View Full Code Here

Examples of com.sun.jdi.connect.Connector.description()

            String transportName =
                cc.transport() == null ? "null" : cc.transport().name();
            MessageOutput.println();
            MessageOutput.println("Connector and Transport name",
                                  new Object [] {cc.name(), transportName});
            MessageOutput.println("Connector description", cc.description());

            Iterator argIter = cc.defaultArguments().values().iterator();
            if (argIter.hasNext()) {
                while (argIter.hasNext()) {
                    Connector.Argument aa = (Connector.Argument)argIter.next();
View Full Code Here

Examples of com.sun.jdi.connect.Connector.Argument.description()

    for(String key : args.keySet())
      {
      arg = args.get(key);
      Label l=new Label(container, SWT.NONE);
      l.setText(arg.label() + (arg.mustSpecify() ? "*" : ""));
      l.setToolTipText(arg.description());
     
      if(arg instanceof StringArgument)
        argInput=new StringArgumentInput((StringArgument) arg, container);
      else if(arg instanceof BooleanArgument)
        argInput=new BooleanArgumentInput((BooleanArgument) arg, container);
View Full Code Here

Examples of com.tinkerpop.rexster.extension.ExtensionDescriptor.description()

                                    hypermediaLink.put("title", currentNamespaceAndName);
                                }

                                // descriptor is not a required annotation for extensions.
                                if (descriptor != null) {
                                    hypermediaLink.put("description", descriptor.description());
                                }

                                final JSONArray queryStringParameters = buildQueryStringParameters(method, descriptor);
                                if (queryStringParameters.length() > 0) {
                                    hypermediaLink.put("parameters", queryStringParameters);
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.