All pastes #2075801 Raw Edit

Something

public text v1 · immutable
#2075801 ·published 2011-06-06 22:45 UTC
rendered paste body

package time;

public class Time {

    public static void main(String[] args) {
        
        class TimeA {
            int hours, minutes;
                TimeA(int hr, int min){
                    this.hours = hr;
                    this.minutes = min;
                }
        }
        class TimeB {
            double doubleDecimal;
                TimeB(double hrmin){
                    this.doubleDecimal = hrmin;
                }
        }
    }
}