~ubuntu-branches/debian/stretch/insubstantial/stretch

« back to all changes in this revision

Viewing changes to laf-widget/src/main/java/org/pushingpixels/lafwidget/ant/UiDelegateWriterOneParamCtr.java

  • Committer: Package Import Robot
  • Author(s): Felix Natter
  • Date: 2016-01-18 20:58:45 UTC
  • Revision ID: package-import@ubuntu.com-20160118205845-crbmrkda61qsi5qa
Tags: upstream-7.3+dfsg2
ImportĀ upstreamĀ versionĀ 7.3+dfsg2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 2005-2010 Laf-Widget Kirill Grouchnikov. All Rights Reserved.
 
3
 *
 
4
 * Redistribution and use in source and binary forms, with or without 
 
5
 * modification, are permitted provided that the following conditions are met:
 
6
 * 
 
7
 *  o Redistributions of source code must retain the above copyright notice, 
 
8
 *    this list of conditions and the following disclaimer. 
 
9
 *     
 
10
 *  o Redistributions in binary form must reproduce the above copyright notice, 
 
11
 *    this list of conditions and the following disclaimer in the documentation 
 
12
 *    and/or other materials provided with the distribution. 
 
13
 *     
 
14
 *  o Neither the name of Laf-Widget Kirill Grouchnikov nor the names of 
 
15
 *    its contributors may be used to endorse or promote products derived 
 
16
 *    from this software without specific prior written permission. 
 
17
 *     
 
18
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
 
19
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 
 
20
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 
 
21
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 
 
22
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
 
23
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 
 
24
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 
 
25
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
 
26
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 
 
27
 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, 
 
28
 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
 
29
 */
 
30
package org.pushingpixels.lafwidget.ant;
 
31
 
 
32
import org.objectweb.asm.*;
 
33
 
 
34
/**
 
35
 * Bytecode writer for a forwarding UI delegate class with a single constructor
 
36
 * that gets one parameter.
 
37
 * 
 
38
 * @author Kirill Grouchnikov
 
39
 */
 
40
public class UiDelegateWriterOneParamCtr extends ClassWriter implements Opcodes {
 
41
        /**
 
42
         * Creates a new bytecode writer.
 
43
         */
 
44
        public UiDelegateWriterOneParamCtr() {
 
45
                super(false);
 
46
        }
 
47
 
 
48
        /**
 
49
         * Creates a new class.
 
50
         * 
 
51
         * @param packageName
 
52
         *            Package name.
 
53
         * @param className
 
54
         *            Class name.
 
55
         * @param superClassName
 
56
         *            Superclass name.
 
57
         * @param paramClassDesc
 
58
         *            Description of the parameter classes.
 
59
         * @return Class bytecode contents.
 
60
         */
 
61
        public static byte[] createClass(String packageName, String className,
 
62
                        String superClassName, String paramClassDesc) {
 
63
 
 
64
                packageName = packageName.replace('.', '/');
 
65
                superClassName = superClassName.replace('.', '/');
 
66
 
 
67
                UiDelegateWriterOneParamCtr cw = new UiDelegateWriterOneParamCtr();
 
68
 
 
69
                MethodVisitor mv;
 
70
 
 
71
                cw.visit(Opcodes.V1_2, Opcodes.ACC_PUBLIC + Opcodes.ACC_SUPER,
 
72
                                packageName + "/" + className, null, superClassName, null);
 
73
 
 
74
                cw.visitSource(className + ".java", null);
 
75
 
 
76
                mv = cw.visitMethod(Opcodes.ACC_PUBLIC + Opcodes.ACC_STATIC,
 
77
                                "createUI",
 
78
                                "(Ljavax/swing/JComponent;)Ljavax/swing/plaf/ComponentUI;",
 
79
                                null, null);
 
80
                mv.visitCode();
 
81
                mv.visitTypeInsn(Opcodes.NEW, packageName + "/" + className);
 
82
                mv.visitInsn(Opcodes.DUP);
 
83
                mv.visitVarInsn(Opcodes.ALOAD, 0);
 
84
                mv.visitTypeInsn(Opcodes.CHECKCAST, paramClassDesc.substring(1,
 
85
                                paramClassDesc.length() - 1));
 
86
                mv.visitMethodInsn(Opcodes.INVOKESPECIAL,
 
87
                                packageName + "/" + className, "<init>", "(" + paramClassDesc
 
88
                                                + ")V");
 
89
                mv.visitInsn(Opcodes.ARETURN);
 
90
                mv.visitMaxs(3, 1);
 
91
                mv.visitEnd();
 
92
 
 
93
                mv = cw.visitMethod(Opcodes.ACC_PUBLIC, "<init>", "(" + paramClassDesc
 
94
                                + ")V", null, null);
 
95
                mv.visitCode();
 
96
                mv.visitVarInsn(Opcodes.ALOAD, 0);
 
97
                mv.visitVarInsn(Opcodes.ALOAD, 1);
 
98
                mv.visitMethodInsn(Opcodes.INVOKESPECIAL, superClassName, "<init>", "("
 
99
                                + paramClassDesc + ")V");
 
100
                mv.visitInsn(Opcodes.RETURN);
 
101
                mv.visitMaxs(2, 2);
 
102
                mv.visitEnd();
 
103
 
 
104
                cw.visitEnd();
 
105
 
 
106
                return cw.toByteArray();
 
107
        }
 
108
}