Skip to content

Commit

Permalink
rename Lookup*() to LookupOrCreate*()
Browse files Browse the repository at this point in the history
  • Loading branch information
smdn committed Apr 1, 2024
1 parent 3984004 commit ba704aa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ out EchonetObjectSpecification? echonetObject
/// 一致するECHONET Lite オブジェクトを取得できた場合は、そのオブジェクトを返します。
/// 一致するECHONET Lite オブジェクトが存在しない場合は、指定されたクラスグループコード・クラスコードをもつオブジェクトを作成して返します。
/// </returns>
public static EchonetObjectSpecification LookupClass(
public static EchonetObjectSpecification LookupOrCreateClass(
byte classGroupCode,
byte classCode,
bool includeProfiles
Expand All @@ -88,7 +88,7 @@ bool includeProfiles
/// 一致するECHONET プロパティを取得できた場合は、そのオブジェクトを返します。
/// 一致するECHONET プロパティが存在しない場合は、指定されたプロパティコードをもつプロパティを作成して返します。
/// </returns>
public static EchonetPropertySpecification LookupProperty(
public static EchonetPropertySpecification LookupOrCreateProperty(
byte classGroupCode,
byte classCode,
byte propertyCode,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public sealed class EchonetObject
public EchonetObject(EOJ eoj)
: this
(
classObject: DeviceClasses.LookupClass(eoj.ClassGroupCode, eoj.ClassCode, includeProfiles: true),
classObject: DeviceClasses.LookupOrCreateClass(eoj.ClassGroupCode, eoj.ClassCode, includeProfiles: true),
instanceCode: eoj.InstanceCode
)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ bool isGet
)
: this
(
spec: DeviceClasses.LookupProperty(classGroupCode, classCode, epc, includeProfiles: true),
spec: DeviceClasses.LookupOrCreateProperty(classGroupCode, classCode, epc, includeProfiles: true),
isAnno: isAnno,
isSet: isSet,
isGet: isGet
Expand Down

0 comments on commit ba704aa

Please sign in to comment.