コード例 #1
0
ファイル: InsteonDevice.java プロジェクト: richardcw1/openhab
 private void addFeature(String name, DeviceFeature f) {
   f.setDevice(this);
   synchronized (m_features) {
     m_features.put(name, f);
   }
 }
コード例 #2
0
ファイル: DeviceFeature.java プロジェクト: pinguin45/openhab
 /**
  * Constructor
  *
  * @param device Insteon device to which this feature belongs
  * @param name descriptive name for that feature
  */
 public DeviceFeature(InsteonDevice device, String name) {
   m_name = name;
   setDevice(device);
 }