Now I have to create a new physical file in android eclipse for every open class that I create
For example, if I have below 2 classes (system and region), for example:
File Region.java:
package com.acrossair.tvguideuk;
public class Region
{
public int RegionID;
public String Name;
}
System.java file:
package com.acrossair.tvguideuk;
public class System
{
public int SystemID;
public String Name;
}
How can I just create a CustomObjects.java file and have all these custom classes in one file?
source
share