SomePyMethods.java :  » Scripting » Jython-2.5.1 » org » python » tests » Java Open Source

Java Open Source » Scripting » Jython 2.5.1 
Jython 2.5.1 » org » python » tests » SomePyMethods.java
package org.python.tests;


public class SomePyMethods {

    public int b = 3;

    public int __getitem__(int idx) {
        return idx * 2;
    }

    public int __getattr__(String name) {
        return 2;
    }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.