Package mpmetr.core

Examples of mpmetr.core.SectorModel


    private static final char OFF_CHAR = '\u2729';
    private final SectorModel model;
    private final JLabel label;

    public SectorPanel(SectorEnum sector) {
        SectorModel model = new SectorModel(sector);
        setLayout(new GridLayout(1, 1));
        this.model = model;
        label = new JLabel("" + OFF_CHAR);
        if (sector == SE_0130) align(BOTTOM, LEFT);
        else if (sector == SE_0430) align(TOP, LEFT);
View Full Code Here

TOP

Related Classes of mpmetr.core.SectorModel

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.