com.yworks.yguard.test.StaticClassB Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yguard Show documentation
Show all versions of yguard Show documentation
The open-source Java obfuscation tool working with Ant and Gradle by yWorks - the diagramming experts
/*
* StaticClassB.java
*
* Created on March 27, 2003, 2:20 PM
*/
package com.yworks.yguard.test;
/**
*
* @author Sebastian Mueller, yWorks GmbH http://www.yworks.com
*/
public class StaticClassB
{
/** Creates a new instance of StaticClassB */
public StaticClassB()
{
}
public static void staticBarMember(double foo){
System.out.println("doing bar");
}
}