partial classes/partial class file
- by Ravisha
In C# .net there is a provision to have two different class files and make them a single class using the keyword partial keyword.this helps it to keep [for ex]UI and logic seperate.
of course we can have two classes to achieve this one for UI and other for logic.
Can this be achieved in java some how?