Package org.objectweb.speedo.sequence.api

Examples of org.objectweb.speedo.sequence.api.SpeedoSequenceItf


      if (logger != null && logger.isLoggable(BasicLevel.DEBUG)) {
        logger.log(BasicLevel.DEBUG, "Sequence name: " + tokens[SEQ_NAME_IDX]);
      }
      String sequencePrefix = (className.lastIndexOf('.') != -1) ? className.substring(0, className.lastIndexOf('.')+1):"";
      sequencePrefix = StringReplace.replaceString("/", "", sequencePrefix);
      SpeedoSequenceItf sequence = (SpeedoSequenceItf) pmf.getSequenceManager()
        .getSequence(sequencePrefix + tokens[SEQ_NAME_IDX]);
      if (sequence == null) {
        throw new PException("Wrong sequence name: " + sequencePrefix + tokens[SEQ_NAME_IDX]);
      }
      sequence.getLongGen();
      binder.setSequence(sequence);
    }
        return binder;
    }
View Full Code Here

TOP

Related Classes of org.objectweb.speedo.sequence.api.SpeedoSequenceItf

Copyright © 2018 www.massapicom. 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.