Package ch.entwine.weblounge.common.content

Examples of ch.entwine.weblounge.common.content.Composeable


  @Override
  public boolean equals(Object o) {
    if (identifier == null)
      throw new IllegalStateException("Composeable object needs an identifier");
    if (o instanceof Composeable) {
      Composeable c = (Composeable) o;
      return c.getIdentifier().equals(identifier);
    }
    return false;
  }
View Full Code Here

TOP

Related Classes of ch.entwine.weblounge.common.content.Composeable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.