Package org.goobi.pagination

Examples of org.goobi.pagination.RomanNumberSequence


    case FREETEXT:
      sequence= new ArrayList(1);
      sequence.add(paginationStartValue);
      break;
    case ROMAN:
      sequence = new RomanNumberSequence(start, end, increment);
      break;
    case ARABIC:
      sequence = new IntegerSequence(start, end, increment);
      break;
    }
View Full Code Here

TOP

Related Classes of org.goobi.pagination.RomanNumberSequence

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.