[jboss-svn-commits] JBL Code SVN: r6224 - labs/jbossrules/trunk/drools-core/src/main/java/org/drools/util
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Thu Sep 14 09:01:55 EDT 2006
Author: mark.proctor at jboss.com
Date: 2006-09-14 09:01:53 -0400 (Thu, 14 Sep 2006)
New Revision: 6224
Added:
labs/jbossrules/trunk/drools-core/src/main/java/org/drools/util/LinkedListEntry.java
Removed:
labs/jbossrules/trunk/drools-core/src/main/java/org/drools/util/LinkedListObjectWrapper.java
Log:
JBRULES-494 Linked Tuple
-Added missing BetaNodeBinder renaming to BetaNodeCosntraints
Copied: labs/jbossrules/trunk/drools-core/src/main/java/org/drools/util/LinkedListEntry.java (from rev 6196, labs/jbossrules/trunk/drools-core/src/main/java/org/drools/util/LinkedListObjectWrapper.java)
===================================================================
--- labs/jbossrules/trunk/drools-core/src/main/java/org/drools/util/LinkedListObjectWrapper.java 2006-09-13 11:24:19 UTC (rev 6196)
+++ labs/jbossrules/trunk/drools-core/src/main/java/org/drools/util/LinkedListEntry.java 2006-09-14 13:01:53 UTC (rev 6224)
@@ -0,0 +1,34 @@
+package org.drools.util;
+
+/*
+ * Copyright 2005 JBoss Inc
+ *
+ * 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.
+ */
+
+/**
+ * The idea behind <code>LinkedListNodeWrapper</code> is to be able to add
+ * the same <code>LinkedListNode</code> to multiple <code>LinkedList</code>s
+ * where the node can have different previous and next nodes in each list.
+ */
+public class LinkedListEntry extends AbstractBaseLinkedListNode {
+ private Object object;
+
+ public LinkedListEntry(final Object object) {
+ this.object = object;
+ }
+
+ public Object getObject() {
+ return this.object;
+ }
+}
Deleted: labs/jbossrules/trunk/drools-core/src/main/java/org/drools/util/LinkedListObjectWrapper.java
===================================================================
--- labs/jbossrules/trunk/drools-core/src/main/java/org/drools/util/LinkedListObjectWrapper.java 2006-09-14 12:56:06 UTC (rev 6223)
+++ labs/jbossrules/trunk/drools-core/src/main/java/org/drools/util/LinkedListObjectWrapper.java 2006-09-14 13:01:53 UTC (rev 6224)
@@ -1,34 +0,0 @@
-package org.drools.util;
-
-/*
- * Copyright 2005 JBoss Inc
- *
- * 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.
- */
-
-/**
- * The idea behind <code>LinkedListNodeWrapper</code> is to be able to add
- * the same <code>LinkedListNode</code> to multiple <code>LinkedList</code>s
- * where the node can have different previous and next nodes in each list.
- */
-public class LinkedListObjectWrapper extends AbstractBaseLinkedListNode {
- private Object object;
-
- public LinkedListObjectWrapper(final Object object) {
- this.object = object;
- }
-
- public Object getObject() {
- return this.object;
- }
-}
More information about the jboss-svn-commits
mailing list