Observable Properties : Properties « Development Class « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Development Class » PropertiesScreenshots 
Observable Properties
    

// ObservableProperties.java
// $Id: ObservableProperties.java,v 1.8 2000/08/16 21:37:58 ylafon Exp $
// (c) COPYRIGHT MIT and INRIA, 1996.
// Please first read the full copyright statement in file COPYRIGHT.html


import java.io.File;
import java.util.Properties;
import java.util.StringTokenizer;

/**
 * An enhanced property class that provides support to monitor changes. This
 * class extends the basic properties class of Java, by providing monitoring
 * support. It also provides more type conversion.
 
 @see PropertyMonitoring
 */

public class ObservableProperties extends Properties {
  private static final boolean debug = false;

  PropertyMonitoring observers[] null;

  int observers_count = 0;

  /**
   * Subscribe for property monitoring.
   
   @param observer
   *          The object that handles the PropertyMonitoring interface.
   */

  public synchronized void registerObserver(PropertyMonitoring o) {
    // Try looking for an empty slot:
    for (int i = 0; i < observers.length; i++) {
      if (observers[i== null) {
        observers[i= o;
        return;
      }
    }
    // Add the observer to the registered oned, resizing array if needed
    if (observers_count + >= observers.length) {
      PropertyMonitoring m[] new PropertyMonitoring[observers.length * 2];
      System.arraycopy(observers, 0, m, 0, observers.length);
      observers = m;
    }
    observers[observers_count++= o;
  }

  /**
   * Unsubscribe this object from the observers list.
   
   @param observer
   *          The observer to unsubscribe.
   @return A boolean <strong>true</strong> if object was succesfully
   *         unsubscribed, <strong>false</strong> otherwise.
   */

  public synchronized boolean unregisterObserver(PropertyMonitoring o) {
    for (int i = 0; i < observers.length; i++) {
      if (observers[i== o) {
        observers[inull;
        return true;
      }
    }
    return false;
  }

  /**
   * Update a property value. Assign a value to a property. If the property
   * value has really changed notify our observers of the change.
   
   @param name
   *          The name of the property to assign.
   @param value
   *          The new value for this property, or <strong>null</strong> if the
   *          property setting is to be cancelled.
   @return A boolean <strong>true</strong> if change was accepted by our
   *         observers, <strong>false</strong> otherwise.
   */

  public synchronized boolean putValue(String name, String value) {
    if (debug)
      System.out.println("ObservableProperties: put " + name + "=[" + value + "]");
    // If null value, remove the prop definition:
    if (value == null) {
      super.remove(name);
      return true;
    }
    // Otherwise, proceed:
    String old = (Stringget(name);
    if ((old == null|| (!old.equals(value))) {
      super.put(name, value);
      for (int i = 0; i < observers.length; i++) {
        if (observers[i== null)
          continue;
        if (debug)
          System.out.println("ObservableProperties: notifies " + observers[i]);
        if (!observers[i].propertyChanged(name)) {
          if (old != null)
            super.put(name, old);
          return false;
        }
      }
    }
    return true;
  }

  /**
   * Get this property value, as a boolean.
   
   @param name
   *          The name of the property to be fetched.
   @param def
   *          The default value, if the property isn't defined.
   @return A Boolean instance.
   */

  public boolean getBoolean(String name, boolean def) {
    String v = getProperty(name, null);
    if (v != null)
      return "true".equalsIgnoreCase(vtrue false;
    return def;
  }

  /**
   * Get this property value, as a String.
   
   @param name
   *          The name of the property to be fetched.
   @param def
   *          The default value, if the property isn't defined.
   @return An instance of String.
   */

  public String getString(String name, String def) {
    String v = getProperty(name, null);
    if (v != null)
      return v;
    return def;
  }

  /**
   * Get this property as a String array. By convention, properties that are get
   * as string arrays should be encoded as a <strong>|</strong> separated list
   * of Strings.
   
   @param name
   *          The property's name.
   @param def
   *          The default value (if undefined).
   @return A String array, or <strong>null</strong> if the property is
   *         undefined.
   */

  public String[] getStringArray(String name, String def[]) {
    String v = getProperty(name, null);
    if (v == null)
      return def;
    // Parse the property value:
    StringTokenizer st = new StringTokenizer(v, "|");
    int len = st.countTokens();
    String ret[] new String[len];
    for (int i = 0; i < ret.length; i++) {
      ret[i= st.nextToken();
    }
    return ret;
  }

  /**
   * Get this property value, as an integer.
   
   @param name
   *          The name of the property to be fetched.
   @param def
   *          The default value, if the property isn't defined.
   @return An integer value.
   */

  public int getInteger(String name, int def) {
    String v = getProperty(name, null);
    if (v != null) {
      try {
        if (v.startsWith("0x")) {
          return Integer.valueOf(v.substring(2)16).intValue();
        }
        if (v.startsWith("#")) {
          return Integer.valueOf(v.substring(1)16).intValue();
        }
        return Integer.valueOf(v).intValue();
      catch (NumberFormatException e) {
      }
    }
    return def;
  }

  public long getLong(String name, long def) {
    String v = getProperty(name, null);
    if (v != null) {
      try {
        return Long.valueOf(v).longValue();
      catch (NumberFormatException e) {
      }
    }
    return def;
  }

  /**
   * Get this property value, as a double.
   
   @param name
   *          The name of the property.
   @param def
   *          The default value if undefined.
   @return A double value.
   */

  public double getDouble(String name, double def) {
    String v = getProperty(name, null);
    if (v != null) {
      try {
        return Double.valueOf(v).doubleValue();
      catch (NumberFormatException ex) {
      }
    }
    return def;
  }

  /**
   * Get this property value, as a File.
   
   @param name
   *          The name of the property to be fetched.
   @param def
   *          The default value, if the property isn't defined.
   @return An instance of File.
   */

  public File getFile(String name, File def) {
    String v = getProperty(name, null);
    if (v != null)
      return new File(v);
    return def;
  }

  /**
   * Build an httpdProperties instance from a Properties instance.
   
   @param props
   *          The Properties instance.
   */

  public ObservableProperties(Properties props) {
    super(props);
    this.observers = new PropertyMonitoring[5];
    this.observers_count = 0;
  }

}

// PropertyMonitoring.java
// $Id: PropertyMonitoring.java,v 1.3 2000/08/16 21:37:58 ylafon Exp $
// (c) COPYRIGHT MIT and INRIA, 1996.
// Please first read the full copyright statement in file COPYRIGHT.html
interface PropertyMonitoring {

  /**
   * The callback method, invoked when any property change occurs.
   
   @param name
   *          The name of the property that changed.
   @return A boolean, if <strong>true</strong>, accept the new property
   *         value, otherwise, reject it and reset the property to its old
   *         value.
   */

  public boolean propertyChanged(String name);
}

   
    
    
    
  
Related examples in the same category
1. Read a set of properties from the received input stream, strip off any excess white space that exists in those property values,
2. Copy a set of properties from one Property to another.
3. Sorts property list and print out each key=value pair prepended with specific indentation.
4. Sorts a property list and turns the sorted list into a string.
5. A utility class for replacing properties in strings.
6. Property Loader
7. Property access utility methods
8. Represents a persistent set of properties
9. Converts specified map to java.util.Properties
10. A java.util.Properties class that will check a file or URL for changes periodically
11. Encapsulates java.util.Properties to add java primitives and some other java classes
12. Load and save properties to files.
13. Adds new properties to an existing set of properties
14. Extracts a specific property key subset from the known properties
15. Merge Properties Into Map
16. XML configuration management
17. JDOM based XML properties
18. XML Properties
19. Converts Unicode into something that can be embedded in a java properties file
20. Create Properties from String array
21. Task to overwrite Properties
22. Gets strong-type-value property from a standard Properties
23. The properties iterator iterates over a set of enumerated properties.
24. An utility class to ease up using property-file resource bundles.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.