1. 같은 패키지 내에 있는 다른 클래스의 메소드 쓰기 package orgOpenTutorials; public class OkJavaGoInHome { public static void main(String[] args) { String id = "JAVA APT 507"; //Elevator call Elevator myElevator = new Elevator (id); myElevator.callForUp(1); //올라가기위해 1층으로 엘베를 보내라 // Security off Security mySecurity = new Security(id); mySecurity.off(); // Light on Lighting hallLamp = new Lighting (id+" / Hall lamp")..