Skip to content

Commit

Permalink
Set variable values during node loading
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinherron committed Aug 25, 2022
1 parent acf496a commit 43e5fb7
Show file tree
Hide file tree
Showing 7 changed files with 5,485 additions and 1,205 deletions.
Expand Up @@ -1784,7 +1784,7 @@ void loadNode254() {
this.nodeManager.addNode(node);
}

void load() {
void load() throws Exception {
loadNode0();
loadNode1();
loadNode2();
Expand Down
@@ -1,13 +1,3 @@
/*
* Copyright (c) 2022 the Eclipse Milo Authors
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*/

package org.eclipse.milo.opcua.sdk.server.namespaces.loader;

import org.eclipse.milo.opcua.sdk.core.Reference;
Expand Down Expand Up @@ -3129,7 +3119,7 @@ void loadNode383() {
this.nodeManager.addNode(node);
}

void load() {
void load() throws Exception {
loadNode0();
loadNode1();
loadNode2();
Expand Down
@@ -1,13 +1,3 @@
/*
* Copyright (c) 2022 the Eclipse Milo Authors
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*/

package org.eclipse.milo.opcua.sdk.server.namespaces.loader;

import org.eclipse.milo.opcua.sdk.core.Reference;
Expand Down Expand Up @@ -6850,7 +6840,7 @@ void loadNode751() {
this.nodeManager.addNode(node);
}

void load() {
void load() throws Exception {
loadNode0();
loadNode1();
loadNode2();
Expand Down
@@ -1,13 +1,3 @@
/*
* Copyright (c) 2022 the Eclipse Milo Authors
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*/

package org.eclipse.milo.opcua.sdk.server.namespaces.loader;

import org.eclipse.milo.opcua.sdk.core.Reference;
Expand Down Expand Up @@ -2289,7 +2279,7 @@ void loadNode245() {
this.nodeManager.addNode(node);
}

void load() {
void load() throws Exception {
loadNode0();
loadNode1();
loadNode2();
Expand Down
@@ -1,13 +1,3 @@
/*
* Copyright (c) 2022 the Eclipse Milo Authors
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*/

package org.eclipse.milo.opcua.sdk.server.namespaces.loader;

import org.eclipse.milo.opcua.sdk.core.Reference;
Expand Down Expand Up @@ -421,7 +411,7 @@ void loadNode64() {
this.nodeManager.addNode(node);
}

void load() {
void load() throws Exception {
loadNode0();
loadNode1();
loadNode2();
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

0 comments on commit 43e5fb7

Please sign in to comment.