Package org.napile.primitive.sets.impl

Examples of org.napile.primitive.sets.impl.TreeIntSet


        calendar.set(Calendar.DAY_OF_WEEK, Calendar.SUNDAY);
        if (calendar.before(Config.CASTLE_VALIDATION_DATE))
            calendar.add(Calendar.WEEK_OF_YEAR, 1);
        validateSiegeDate(calendar, 2);

        _nextSiegeTimes = new TreeIntSet();

        for (int h : Config.CASTLE_SELECT_HOURS) {
            calendar.set(Calendar.HOUR_OF_DAY, h);
            _nextSiegeTimes.add((int) (calendar.getTimeInMillis() / 1000L));
        }
View Full Code Here

TOP

Related Classes of org.napile.primitive.sets.impl.TreeIntSet

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.