com.pyx4me.maven.j2me.MIDlet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of j2me-maven-plugin Show documentation
Show all versions of j2me-maven-plugin Show documentation
Maven 2 Plugin to make j2me project
/**
* Pyx4me framework
* Copyright (C) 2006-2007 pyx4.com.
*
* @author vlads
* @version $Id: MIDlet.java 103 2007-04-21 01:33:52Z vlads $
*/
package com.pyx4me.maven.j2me;
public class MIDlet {
String name = "";
String cls = "";
String icon = "";
boolean test = false;
public void setClass(String cls) {
this.cls = cls;
}
}