1 24 package org.objectweb.jalisto.se.impl.server.page; 25 26 import org.objectweb.jalisto.se.api.internal.JalistoObject; 27 28 29 public class InstancePage extends UserPage { 30 public InstancePage(int size, Object pid) { 31 super(size, pid); 32 } 33 34 protected String pageName() { 35 return "IsP"; 36 } 37 38 public JalistoObject getClone() { 39 return internalClone(new InstancePage(getSize(), getPid())); 40 } 41 42 static final long serialVersionUID = -7589377097966661459L; 43 } 44 | Popular Tags |