Package de.timefinder.data.set

Examples of de.timefinder.data.set.DayRaster


    private boolean enabled = true;

    public ConflictMatrix(int slotsPerWeek, int slotsPerDay) {
        this.slotsPerWeek = slotsPerWeek;
        // use for all events the same dayRaster
        dayRaster = new DayRaster(slotsPerDay, slotsPerWeek);
    }
View Full Code Here


    public DayRasterTest() {
    }

    @Before
    public void setUp() {
        raster = new DayRaster(SLOTS, SLOTS * DAYS);
    }
View Full Code Here

TOP

Related Classes of de.timefinder.data.set.DayRaster

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.