You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mb...@apache.org on 2013/09/18 18:42:47 UTC

svn commit: r1524485 - in /commons/proper/proxy/branches/version-2.0-work: asm4/src/site/ asm4/src/site/markdown/ cglib/src/site/ cglib/src/site/markdown/ javassist/src/site/ javassist/src/site/markdown/ jdk/src/site/ jdk/src/site/markdown/

Author: mbenson
Date: Wed Sep 18 16:42:47 2013
New Revision: 1524485

URL: http://svn.apache.org/r1524485
Log:
site

Added:
    commons/proper/proxy/branches/version-2.0-work/asm4/src/site/
    commons/proper/proxy/branches/version-2.0-work/asm4/src/site/markdown/
    commons/proper/proxy/branches/version-2.0-work/asm4/src/site/markdown/index.md
    commons/proper/proxy/branches/version-2.0-work/cglib/src/site/
    commons/proper/proxy/branches/version-2.0-work/cglib/src/site/markdown/
    commons/proper/proxy/branches/version-2.0-work/cglib/src/site/markdown/index.md
    commons/proper/proxy/branches/version-2.0-work/javassist/src/site/
    commons/proper/proxy/branches/version-2.0-work/javassist/src/site/markdown/
    commons/proper/proxy/branches/version-2.0-work/javassist/src/site/markdown/index.md
    commons/proper/proxy/branches/version-2.0-work/jdk/src/site/
    commons/proper/proxy/branches/version-2.0-work/jdk/src/site/markdown/
    commons/proper/proxy/branches/version-2.0-work/jdk/src/site/markdown/index.md

Added: commons/proper/proxy/branches/version-2.0-work/asm4/src/site/markdown/index.md
URL: http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/asm4/src/site/markdown/index.md?rev=1524485&view=auto
==============================================================================
--- commons/proper/proxy/branches/version-2.0-work/asm4/src/site/markdown/index.md (added)
+++ commons/proper/proxy/branches/version-2.0-work/asm4/src/site/markdown/index.md Wed Sep 18 16:42:47 2013
@@ -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.
+-->
+
+## Commons Proxy ASM4
+
+Provides the [ASM4ProxyFactory][] which uses the [ASM][] library (v4.x)
+to create proxy classes. This proxy factory is capable of proxying concrete
+non-`final` types and can thus be considered a *subclassing* proxy factory.
+
+[ASM4ProxyFactory]: apidocs/org/apache/commons/proxy2/asm4/ASM4ProxyFactory.html
+
+[ASM]: http://asm.ow2.org/

Added: commons/proper/proxy/branches/version-2.0-work/cglib/src/site/markdown/index.md
URL: http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/cglib/src/site/markdown/index.md?rev=1524485&view=auto
==============================================================================
--- commons/proper/proxy/branches/version-2.0-work/cglib/src/site/markdown/index.md (added)
+++ commons/proper/proxy/branches/version-2.0-work/cglib/src/site/markdown/index.md Wed Sep 18 16:42:47 2013
@@ -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.
+-->
+
+## Commons Proxy Cglib
+
+Provides the [CglibProxyFactory][] which uses the [cglib][] library
+to create proxy classes. This proxy factory is capable of proxying concrete
+non-`final` types and can thus be considered a *subclassing* proxy factory.
+
+[CglibProxyFactory]: apidocs/org/apache/commons/proxy2/cglib/CglibProxyFactory.html
+
+[cglib]: http://cglib.sourceforge.net/

Added: commons/proper/proxy/branches/version-2.0-work/javassist/src/site/markdown/index.md
URL: http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/javassist/src/site/markdown/index.md?rev=1524485&view=auto
==============================================================================
--- commons/proper/proxy/branches/version-2.0-work/javassist/src/site/markdown/index.md (added)
+++ commons/proper/proxy/branches/version-2.0-work/javassist/src/site/markdown/index.md Wed Sep 18 16:42:47 2013
@@ -0,0 +1,27 @@
+<!--
+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.
+-->
+
+## Commons Proxy Javassist
+
+Provides the [JavassistProxyFactory][] which uses the [Javassist][] library
+to create proxy classes. This proxy factory is capable of proxying concrete
+non-`final` types and can thus be considered a *subclassing* proxy factory.
+
+[JavassistProxyFactory]: apidocs/org/apache/commons/proxy2/javassist/JavassistProxyFactory.html
+[Javassist]: http://www.javassist.org

Added: commons/proper/proxy/branches/version-2.0-work/jdk/src/site/markdown/index.md
URL: http://svn.apache.org/viewvc/commons/proper/proxy/branches/version-2.0-work/jdk/src/site/markdown/index.md?rev=1524485&view=auto
==============================================================================
--- commons/proper/proxy/branches/version-2.0-work/jdk/src/site/markdown/index.md (added)
+++ commons/proper/proxy/branches/version-2.0-work/jdk/src/site/markdown/index.md Wed Sep 18 16:42:47 2013
@@ -0,0 +1,26 @@
+<!--
+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.
+-->
+
+## Commons Proxy JDK
+
+Uses the [Proxy][] mechanism provided by the core JDK to create
+dynamic proxy instances. This proxy factory exposes interfaces
+only.
+
+[Proxy]: http://docs.oracle.com/javase/6/docs/api/java/lang/reflect/Proxy.html