- Java Tools: Add support to handle Services.ReportSettings@owner attribute
parent
648a03c734
commit
a64cfda7f3
Binary file not shown.
Binary file not shown.
@ -0,0 +1,51 @@
|
||||
package com.libiec61850.scl.model;
|
||||
|
||||
/*
|
||||
* Copyright 2013-2020 Michael Zillgith
|
||||
*
|
||||
* This file is part of libIEC61850.
|
||||
*
|
||||
* libIEC61850 is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* libIEC61850 is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with libIEC61850. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* See COPYING file for the complete license text.
|
||||
*/
|
||||
|
||||
import org.w3c.dom.Node;
|
||||
|
||||
import com.libiec61850.scl.ParserUtils;
|
||||
import com.libiec61850.scl.SclParserException;
|
||||
|
||||
public class ReportSettings {
|
||||
|
||||
private Node self;
|
||||
|
||||
public ReportSettings(Node reportSettingsNode)
|
||||
{
|
||||
self = reportSettingsNode;
|
||||
}
|
||||
|
||||
public boolean hasOwner()
|
||||
{
|
||||
try {
|
||||
Boolean ownerValue = ParserUtils.parseBooleanAttribute(self, "owner");
|
||||
|
||||
if (ownerValue != null)
|
||||
return ownerValue.booleanValue();
|
||||
else
|
||||
return false;
|
||||
} catch (SclParserException e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,44 @@
|
||||
package com.libiec61850.scl.model;
|
||||
|
||||
/*
|
||||
* Copyright 2013-2020 Michael Zillgith
|
||||
*
|
||||
* This file is part of libIEC61850.
|
||||
*
|
||||
* libIEC61850 is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* libIEC61850 is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with libIEC61850. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* See COPYING file for the complete license text.
|
||||
*/
|
||||
|
||||
import org.w3c.dom.Node;
|
||||
|
||||
import com.libiec61850.scl.ParserUtils;
|
||||
|
||||
public class Services {
|
||||
|
||||
private Node self;
|
||||
|
||||
public Services(Node servicesNode) {
|
||||
self = servicesNode;
|
||||
}
|
||||
|
||||
public ReportSettings getReportSettings()
|
||||
{
|
||||
Node reportSettingsNode = ParserUtils.getChildNodeWithTag(self, "ReportSettings");
|
||||
|
||||
if (reportSettingsNode != null)
|
||||
return new ReportSettings(reportSettingsNode);
|
||||
return null;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue