Author: adrianc
Date: Sat Dec 17 11:31:06 2011
New Revision: 1215462
URL: http://svn.apache.org/viewvc?rev=1215462&view=rev
Log:
Screen Widget Redesign - added visitor abstract classes.
Added:
ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/form/AbstractFormWidgetVisitor.java
(with props)
ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/menu/AbstractMenuWidgetVisitor.java
(with props)
ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/screen/AbstractScreenWidgetVisitor.java
(with props)
ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/tree/AbstractTreeWidgetVisitor.java
(with props)
Added:
ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/form/AbstractFormWidgetVisitor.java
URL:
http://svn.apache.org/viewvc/ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/form/AbstractFormWidgetVisitor.java?rev=1215462&view=auto
==============================================================================
---
ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/form/AbstractFormWidgetVisitor.java
(added)
+++
ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/form/AbstractFormWidgetVisitor.java
Sat Dec 17 11:31:06 2011
@@ -0,0 +1,28 @@
+/*******************************************************************************
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you 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.ofbiz.widget.form;
+
+/**
+ * Abstract form widget visitor.
+ */
+public abstract class AbstractFormWidgetVisitor implements FormWidgetVisitor {
+
+ public static final String module =
AbstractFormWidgetVisitor.class.getName();
+
+}
Propchange:
ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/form/AbstractFormWidgetVisitor.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/form/AbstractFormWidgetVisitor.java
------------------------------------------------------------------------------
svn:keywords = Author Date Id Rev URL
Added:
ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/menu/AbstractMenuWidgetVisitor.java
URL:
http://svn.apache.org/viewvc/ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/menu/AbstractMenuWidgetVisitor.java?rev=1215462&view=auto
==============================================================================
---
ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/menu/AbstractMenuWidgetVisitor.java
(added)
+++
ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/menu/AbstractMenuWidgetVisitor.java
Sat Dec 17 11:31:06 2011
@@ -0,0 +1,28 @@
+/*******************************************************************************
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you 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.ofbiz.widget.menu;
+
+/**
+ * Abstract menu widget visitor.
+ */
+public abstract class AbstractMenuWidgetVisitor implements MenuWidgetVisitor {
+
+ public static final String module =
AbstractMenuWidgetVisitor.class.getName();
+
+}
Propchange:
ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/menu/AbstractMenuWidgetVisitor.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/menu/AbstractMenuWidgetVisitor.java
------------------------------------------------------------------------------
svn:keywords = Author Date Id Rev URL
Added:
ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/screen/AbstractScreenWidgetVisitor.java
URL:
http://svn.apache.org/viewvc/ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/screen/AbstractScreenWidgetVisitor.java?rev=1215462&view=auto
==============================================================================
---
ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/screen/AbstractScreenWidgetVisitor.java
(added)
+++
ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/screen/AbstractScreenWidgetVisitor.java
Sat Dec 17 11:31:06 2011
@@ -0,0 +1,29 @@
+/*******************************************************************************
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you 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.ofbiz.widget.screen;
+
+/**
+ * Abstract screen widget visitor.
+ *
+ */
+public abstract class AbstractScreenWidgetVisitor implements
ScreenWidgetVisitor {
+
+ public static final String module =
AbstractScreenWidgetVisitor.class.getName();
+
+}
Propchange:
ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/screen/AbstractScreenWidgetVisitor.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/screen/AbstractScreenWidgetVisitor.java
------------------------------------------------------------------------------
svn:keywords = Author Date Id Rev URL
Added:
ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/tree/AbstractTreeWidgetVisitor.java
URL:
http://svn.apache.org/viewvc/ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/tree/AbstractTreeWidgetVisitor.java?rev=1215462&view=auto
==============================================================================
---
ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/tree/AbstractTreeWidgetVisitor.java
(added)
+++
ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/tree/AbstractTreeWidgetVisitor.java
Sat Dec 17 11:31:06 2011
@@ -0,0 +1,29 @@
+/*******************************************************************************
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you 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.ofbiz.widget.tree;
+
+/**
+ * Abstract tree widget visitor.
+ *
+ */
+public abstract class AbstractTreeWidgetVisitor implements TreeWidgetVisitor {
+
+ public static final String module =
AbstractTreeWidgetVisitor.class.getName();
+
+}
Propchange:
ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/tree/AbstractTreeWidgetVisitor.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
ofbiz/branches/20111115ScreenWidgetRedesign/framework/widget/src/org/ofbiz/widget/tree/AbstractTreeWidgetVisitor.java
------------------------------------------------------------------------------
svn:keywords = Author Date Id Rev URL