Examples of SourceType


Examples of com.buschmais.jqassistant.core.report.schema.v1.SourceType

                                    if (resourceResolver != null) {
                                        String element = languageElement.getValue();
                                        resource = resourceResolver.resolve(element, value);
                                    }
                                }
                                SourceType source = column.getSource();
                                lineNumber = source.getLine();
                                if (message.length() > 0) {
                                    message.append(", ");
                                }
                                message.append(name);
                                message.append('=');
View Full Code Here

Examples of com.eclipsesource.tabris.camera.CameraOptions.SourceType

      remoteObject.set( PROPERTY_RESOLUTION, new int[] { resolution.x, resolution.y } );
    }
  }

  private void setSourceType( CameraOptions options ) {
    SourceType sourceType = options.getSourceType();
    if( sourceType != null ) {
      remoteObject.set( PROPERTY_SOURCETYPE, sourceType.toString().toLowerCase() );
    }
  }
View Full Code Here

Examples of com.linkedin.databus2.relay.config.ReplicationBitSetterStaticConfig.SourceType

    if(uri == null)
      throw new DatabusException("Uri is required to start the relay");
    uri = uri.trim();
    EventProducer producer = null;
    if (uri.startsWith("jdbc:")) {
      SourceType sourceType = pConfig.getReplBitSetter().getSourceType();
          if (SourceType.TOKEN.equals(sourceType))
            throw new DatabusException("Token Source-type for Replication bit setter config cannot be set for trigger-based Databus relay !!");

      // if a buffer for this partiton exists - we are overwri
      producer = new OracleEventProducerFactory().buildEventProducer(
View Full Code Here

Examples of com.linkedin.databus2.relay.config.ReplicationBitSetterStaticConfig.SourceType


  @Override
  public ReplicationBitSetterStaticConfig build() throws InvalidConfigException
  {
    SourceType type = null;

    try
    {
      type = SourceType.valueOf(_sourceType);
    } catch (IllegalArgumentException iae) {
View Full Code Here

Examples of net.sourceforge.bing.model.request.BingRequest.SourceType

   */
  public void addItem(ResponseItem item) {
    ArrayList addList = new ArrayList();
    addList.add(item);
   
    SourceType type = item.getType();
    List<? extends ResponseItem> list = listContainer.get(type);
    list.addAll(addList);
  }
View Full Code Here

Examples of net.sourceforge.cardme.vcard.types.SourceType

   
    ProfileType profile = new ProfileType();
    profile.setProfile("VCard");
    vcard.setProfile(profile);
   
    SourceType source = new SourceType();
    source.setSource("Whatever");
    vcard.setSource(source);
   
    NType n = new NType();
    n.setEncodingType(EncodingType.QUOTED_PRINTABLE);
    n.setCharset(Charset.forName("UTF-8"));
View Full Code Here

Examples of net.sourceforge.cardme.vcard.types.SourceType

  }
 
  @Test
  public void testBuildSourceType() throws VCardBuildException {
    VCardImpl vcard = getSimpleVCard();
    vcard.setSource(new SourceType("Whatever"));
   
    VCardWriter vcardWriter = new VCardWriter();
    vcardWriter.setOutputVersion(VCardVersion.V3_0);
    vcardWriter.setCompatibilityMode(CompatibilityMode.RFC2426);
    vcardWriter.setFoldingScheme(FoldingScheme.MIME_DIR);
View Full Code Here

Examples of net.sourceforge.cardme.vcard.types.SourceType

   * @param vcard
   * @throws VCardParseException
   */
  private void parseSourceType(String group, String value, List<ParameterType> paramTypeList, VCardImpl vcard) throws VCardParseException {
    try {
      SourceType sourceType = new SourceType();
      parseParamTypes(sourceType, paramTypeList, value, VCardTypeName.SOURCE);
     
      if(sourceType.isQuotedPrintable()) {
        value = decodeQuotedPrintableValue(sourceType, value);
      }
     
      if(group != null) {
        sourceType.setGroup(group);
      }
     
      sourceType.setSource(VCardUtils.unescapeString(value));
      vcard.setSource(sourceType);
    }
    catch(Exception ex) {
      throw new VCardParseException("SourceType ("+VCardTypeName.SOURCE.getType()+") ["+ex.getClass().getName()+"] "+ex.getMessage(), ex);
    }
View Full Code Here

Examples of net.sourceforge.pmd.SourceType

    {
        PMD pmd = new PMD();

        if ( null != targetJdk )
        {
            SourceType sourceType = SourceType.getSourceTypeForId( "java " + targetJdk );
            if ( sourceType == null )
            {
                throw new MavenReportException( "Unsupported targetJdk value '" + targetJdk + "'." );
            }
            pmd.setJavaVersion( sourceType );
View Full Code Here

Examples of org.apache.cxf.aegis.type.xml.SourceType

        defaultRegister(tm, defaultNillable, Integer.class, XMLSchemaQNames.XSD_INT, new IntType());
        defaultRegister(tm, defaultNillable, Long.class, XMLSchemaQNames.XSD_LONG, new LongType());
        defaultRegister(tm, defaultNillable, Object.class, XMLSchemaQNames.XSD_ANY, new ObjectType());
        defaultRegister(tm, defaultNillable, Byte.class, XMLSchemaQNames.XSD_BYTE, new ByteType());
        defaultRegister(tm, defaultNillable, Short.class, XMLSchemaQNames.XSD_SHORT, new ShortType());
        defaultRegister(tm, defaultNillable, Source.class, XMLSchemaQNames.XSD_ANY, new SourceType());
        defaultRegister(tm, defaultNillable, String.class, XMLSchemaQNames.XSD_STRING, new StringType());
        defaultRegister(tm, defaultNillable, Time.class, XMLSchemaQNames.XSD_TIME, new TimeType());
        defaultRegister(tm, defaultNillable, Timestamp.class, XMLSchemaQNames.XSD_DATETIME,
                        new TimestampType());
        defaultRegister(tm, defaultNillable, URI.class, XMLSchemaQNames.XSD_URI, new URIType());
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.