import java.util.ArrayList;
import java.util.Arrays;
+import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
private String _context;
private String _name;
- private ReadWriteProvidedInterfaces _provided;
- private ReadWriteRequiredInterfaces _required;
+ private List<ProvidedInterface> _provided;
+ private List<RequiredInterface> _required;
/**
* Constructs the subsystem.
_remaining = new ThreadLocal<List<ProvidedInterface>>();
_context = null;
_name = aName;
- _provided = new ReadWriteProvidedInterfaces(aProvided);
- _required = new ReadWriteRequiredInterfaces(aRequired);
+ _provided = new ArrayList<ProvidedInterface>();
+ _provided.addAll(Arrays.asList(aProvided));
+ _required = new ArrayList<RequiredInterface>();
+ _required.addAll(Arrays.asList(aRequired));
}
protected AbstractComponent(String aName) {
@Override
public final ProvidedInterfaces getProvidedInterfaces() {
- return _provided.readOnlyView();
+ return new ProvidedInterfaces(Collections.unmodifiableList(_provided));
}
@Override
public final RequiredInterfaces getRequiredInterfaces() {
- return _required.readOnlyView();
+ return new RequiredInterfaces(Collections.unmodifiableList(_required));
}
@Override
+++ /dev/null
-/*
- * Copyright 2008 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.wamblee.system.core;
-
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.Iterator;
-import java.util.List;
-
-public class ReadWriteNamedInterfaces<T extends NamedInterface> extends ArrayList<T> {
-
- public ReadWriteNamedInterfaces() {
- // Empty.
- }
-
- public ReadWriteNamedInterfaces(T[] aInterfaces) {
- addAll(Arrays.asList(aInterfaces));
- }
-
- public T get(String aName) {
- for (T intf: this) {
- if ( intf.getName().equals(aName)) {
- return intf;
- }
- }
- return null;
- }
-}
+++ /dev/null
-/*
- * Copyright 2008 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.wamblee.system.core;
-
-public class ReadWriteProvidedInterfaces extends ReadWriteNamedInterfaces<ProvidedInterface> {
-
- public ReadWriteProvidedInterfaces() {
- super();
- }
-
- public ReadWriteProvidedInterfaces(ProvidedInterface[] aInterfaces) {
- super(aInterfaces);
- }
-
- public ProvidedInterfaces readOnlyView() {
- return new ProvidedInterfaces(this);
- }
-}
+++ /dev/null
-/*
- * Copyright 2008 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.wamblee.system.core;
-
-public class ReadWriteRequiredInterfaces extends ReadWriteNamedInterfaces<RequiredInterface> {
-
- public ReadWriteRequiredInterfaces() {
- super();
- }
-
- public ReadWriteRequiredInterfaces(RequiredInterface[] aInterfaces) {
- super(aInterfaces);
- }
-
- public RequiredInterfaces readOnlyView() {
- return new RequiredInterfaces(this);
- }
-}