Examples of tags()


Examples of org.qi4j.api.service.qualifier.ServiceTags.tags()

        {
            ServiceTags previousTags = serviceAssembly.metaInfo.get( ServiceTags.class );
            if( previousTags != null )
            {
                List<String> tagList = new ArrayList<>();
                tagList.addAll( asList( previousTags.tags() ) );
                tagList.addAll( asList( tags ) );
                serviceAssembly.metaInfo.set( new ServiceTags( tagList.toArray( new String[ tagList.size() ] ) ) );
            }
            else
            {
View Full Code Here

Examples of org.qi4j.api.service.qualifier.ServiceTags.tags()

        {
            ServiceTags previousTags = serviceAssembly.metaInfo.get( ServiceTags.class );
            if( previousTags != null )
            {
                List<String> tagList = new ArrayList<>();
                Collections.addAll( tagList, previousTags.tags() );
                Collections.addAll( tagList, tags );
                serviceAssembly.metaInfo.set( new ServiceTags( tagList.toArray( new String[ tagList.size() ] ) ) );
            }
            else
            {
View Full Code Here

Examples of org.qi4j.runtime.query.model.Female.tags()

        vivianSmith.email().set( "viv@smith.edu" );
        List<String> vivianTags = new ArrayList<String>();
        vivianTags.add( "Awesome" );
        vivianTags.add( "Pretty" );
        vivianTags.add( "Cool" );
        vivianSmith.tags().set( vivianTags );

        Female annDoe = uow.newEntity( FemaleEntity.class );
        setName( annDoe, "Ann Doe" );
        annDoe.placeOfBirth().set( kualaLumpur );
        annDoe.yearOfBirth().set( 1975 );
View Full Code Here

Examples of org.qi4j.runtime.query.model.Female.tags()

        annDoe.yearOfBirth().set( 1975 );
        annDoe.interests().add( 0, cooking );
        List<String> annTags = new ArrayList<String>();
        annTags.add( "Conservative" );
        annTags.add( "Pretty" );
        annDoe.tags().set( annTags );

        Male joeDoe = uow.newEntity( MaleEntity.class );
        setName( joeDoe, "Joe Doe" );
        joeDoe.placeOfBirth().set( kualaLumpur );
        joeDoe.yearOfBirth().set( 1990 );
View Full Code Here

Examples of org.qi4j.runtime.query.model.Male.tags()

        joeDoe.email().set( "joe@thedoes.net" );
        List<String> joeTags = new ArrayList<String>();
        joeTags.add( "Cool" );
        joeTags.add( "Hunk" );
        joeTags.add( "Awesome" );
        joeDoe.tags().set( joeTags );

        Male jackDoe = uow.newEntity( MaleEntity.class );
        setName( jackDoe, "Jack Doe" );
        jackDoe.placeOfBirth().set( penang );
        jackDoe.yearOfBirth().set( 1970 );
View Full Code Here

Examples of org.qi4j.runtime.query.model.Male.tags()

        jackDoe.interests().add( 0, cars );
        jackDoe.wife().set( annDoe );
        List<String> jackTags = new ArrayList<String>();
        jackTags.add( "Conservative" );
        jackTags.add( "Awesome" );
        jackDoe.tags().set( jackTags );

        ValueBuilder<ContactsValue> builder = vbf.newValueBuilder( ContactsValue.class );
        ValueBuilder<ContactValue> contactBuilder = vbf.newValueBuilder( ContactValue.class );
        contactBuilder.prototype().email().set( "jackdoe@someplace.com" );
        contactBuilder.prototype().phone().set( "555-1234" );
View Full Code Here

Examples of org.sgx.yuigwt.galleryexplorer.client.api.Module.tags()

//    console.log(JsUtil.typeof(modules.get(0)._("tags")));
    for (int i = 0; i < modules.length(); i++) {
      Module module = modules.get(i);
      moduleNamesArr.push(module.module());   
      modulesByName.put(module.module(), module);
      String[] tags = module.tags().split(",");
      for (int j = 0; j < tags.length; j++) {
        moduleTags.add(tags[j]);
     
     
      String[] requires = module.requires().split(",");
View Full Code Here

Examples of org.sonar.server.rule.Rule.tags()

    assertThat(rule.key()).isEqualTo(ruleDto.getKey());

    assertThat(rule.debtRemediationFunction().type().name())
      .isEqualTo(ruleDto.getRemediationFunction());

    assertThat(Sets.newHashSet(rule.tags())).isEqualTo(ruleDto.getTags());
    assertThat(Sets.newHashSet(rule.systemTags())).isEqualTo(ruleDto.getSystemTags());
  }

  @Test
  public void getByKey_null_if_not_found() throws InterruptedException {
View Full Code Here

Examples of org.zkoss.ztl.Tags.tags()

            Class c = Class.forName(pkg
                + f.getName().replace(".class", ""));
            Tags atags = ((Tags) c.getAnnotation(Tags.class));
            if (atags == null)
              continue;
            String keys = atags.tags();
            if (keys == null)
              continue;
            keys = keys.toLowerCase();
            boolean found = true;
            for (String t : tag) {
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.