1 23 24 28 29 package com.sun.enterprise.tools.upgrade.common; 30 31 import java.util.logging.LogRecord ; 32 33 38 public class UpgradeUpdateEvent extends java.util.EventObject { 39 40 private int progressState; 43 44 45 public UpgradeUpdateEvent(java.lang.Object source) { 46 super(source); 47 } 48 public UpgradeUpdateEvent(java.lang.Object source, int state) { 49 super(source); 50 this.progressState = state; 51 } 52 public int getProgressState() { 53 return this.progressState; 54 } 55 56 public void setProgressState(int st) { 57 this.progressState = st; 58 } 59 60 } 61 | Popular Tags |