1 // Copyright 2004, FreeHEP.
2 package hep.wired.heprep.representation;
3
4 import hep.wired.heprep.services.DrawAs;
5
6 /***
7 *
8 * @author Mark Donszelmann
9 * @version $Id: AbstractDrawAs.java 258 2004-06-08 06:27:49Z duns $
10 */
11
12 public abstract class AbstractDrawAs implements DrawAs {
13
14 public String getID() {
15 return getName();
16 }
17 }