30.how To Create Custom Marker Interface in Java
30.how To Create Custom Marker Interface in Java
Vishnu
Syntax:
Let us understand it with a example. We have no. of colleges from which some colleges
are of A grade. We have created a AGradeCollegeMarker interface which contains no
method and only inform the JVM that it is a A grade college. Every A grade college have
to implement AGradeCollegeMarker. In TestCollege class, tester method will print “A
grade college.” if object belongs to A grade college.
Example:
AGradeCollegeMarker.java
package com.sst;
College1.java
package com.sst;
1
Sri Sureka Technologies, NearAndraBank,Opposite Geethanjali High School, Near S.R.Nagar
UmeshChandraStachu, S.R.Nagar, Hyderabad-500038, Ph: 040-66616677, Mobile: +91-9885602332.
30. How to create custom marker Interface By Mr. Vishnu
College2.java
package com.sst;
TestCollege.java
package com.sst;
}
2
Sri Sureka Technologies, NearAndraBank,Opposite Geethanjali High School, Near S.R.Nagar
UmeshChandraStachu, S.R.Nagar, Hyderabad-500038, Ph: 040-66616677, Mobile: +91-9885602332.
30. How to create custom marker Interface By Mr. Vishnu
Output:
A grade college.
3
Sri Sureka Technologies, NearAndraBank,Opposite Geethanjali High School, Near S.R.Nagar
UmeshChandraStachu, S.R.Nagar, Hyderabad-500038, Ph: 040-66616677, Mobile: +91-9885602332.