Thread: javac being stupid/not familiar with eclipse that much

Results 1 to 2 of 2
  1. #1 javac being stupid/not familiar with eclipse that much 
    Registered Member
    Join Date
    Jun 2016
    Posts
    3
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    //////////figured it out
    Reply With Quote  
     

  2. #2  
    aaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaa
    Planets's Avatar
    Join Date
    Aug 2014
    Age
    26
    Posts
    2,161
    Thanks given
    675
    Thanks received
    1,958
    Discord
    View profile
    Rep Power
    5000
    Quote Originally Posted by Friskiukas View Post
    Code:
    public enum ClientMode {
    
        LOCAL("127.0.0.1", 43594), LIVE("127.0.0.1", 43594);
        
        private final String address;
        private final int port;
        
        private ClientMode(String address, int port) {
            this.address = address;
            this.port = port;
        }
        
        public String getAddress() {
            return address;
        }
        
        public int getPort() {
            return port;
        }
        
    }
    Trying to compile this little .java file into a .class, with javac. I'd do it with eclipse, but no idea how. (Javac errors it.) hilf mir!
    i believe you're the one being stupid not javac

    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Replies: 10
    Last Post: 01-12-2016, 08:13 PM
  2. Appeals being deleted and not dealt with.
    By Australisch in forum Complaints
    Replies: 2
    Last Post: 01-10-2016, 12:59 AM
  3. Replies: 9
    Last Post: 11-03-2015, 08:53 PM
  4. Replies: 7
    Last Post: 11-03-2015, 10:09 AM
  5. I Need Someone That Is Familiar With SHARD
    By flamehair9 in forum Help
    Replies: 4
    Last Post: 12-05-2014, 09:41 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •