1 23 24 package org.objectweb.fractal.gui.model; 25 26 29 30 public class BasicBinding implements Binding { 31 32 35 36 private final ClientInterface citf; 37 38 41 42 private final ServerInterface sitf; 43 44 47 48 private long status; 49 50 56 57 BasicBinding (final ClientInterface citf, final ServerInterface sitf) { 58 this.citf = citf; 59 this.sitf = sitf; 60 } 61 62 63 69 70 public long getStatus () { return status; } 71 72 78 79 public void setStatus (long status) { 80 this.status = status; 81 } 82 83 public ClientInterface getClientInterface () { 84 return citf; 85 } 86 87 public ServerInterface getServerInterface () { 88 return sitf; 89 } 90 } 91 | Popular Tags |