Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import javax.swing.DefaultBoundedRangeModel;

public class Main {
    public static void main(String args[]) {
        DefaultBoundedRangeModel model = new DefaultBoundedRangeModel();
        model.setRangeProperties(1, 2, 3, 4, true);
    }
}