1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-16 12:02:47 +00:00

Implemented XML templates

This commit is contained in:
2011-05-24 22:55:31 -03:00
parent 6497016e14
commit cc44946831
10377 changed files with 309163 additions and 6171 deletions

View File

@@ -27,22 +27,20 @@ import com.l2jserver.model.id.TemplateID;
* the type of object created by this template
*/
public abstract class AbstractTemplate<T> implements Template<T> {
/**
* The {@link TemplateID}F
*/
private final TemplateID<?> id;
// /**
// * The {@link TemplateID}
// */
// private final TemplateID<?> id;
/**
* Creates a new instance
*
* @param id
*/
protected AbstractTemplate(TemplateID<?> id) {
this.id = id;
}
// /**
// * Creates a new instance
// *
// * @param id
// */
// protected AbstractTemplate(TemplateID<?> id) {
// this.id = id;
// }
@Override
public TemplateID<?> getID() {
return id;
}
public abstract TemplateID<?> getID();
}