15 lines
257 B
Java
15 lines
257 B
Java
package test1_cdi;
|
|
|
|
/**
|
|
* Created by Giovanni on 26/04/2015.
|
|
*/
|
|
|
|
@StudentI(implementation = student_implementations.one)
|
|
public class StudentImplemented implements Student {
|
|
|
|
@Override
|
|
public String getinfo() {
|
|
return "null null";
|
|
}
|
|
}
|