Home | Gaming | Programming | Play Online | Submit Article | Submit BETA | Advertise | Contact | Keyword Query | Trade Games
Games++ Games & Game Programming

GAMES++
Games++ Home
Games++ Gaming
Games++ Programming
Beta Testing Games
Free Online Games
Hints & Cheats

BROWSER UTILITIES
E-mail This Page
Add to Favorites

SITE SEARCH

Web Games++

AFFILIATES
Cheat Codes
Trickster Wiki
Game Ratings
Trade Games
Gameboy Cheats
PlayStation Cheats
BlackBerry Games
Photoshop Tutorials
Illustrator Tutorials
ImageReady Tutorials
Tutorial Bus
Fresh Tutorials

ADVERTISEMENT

Get The Class Name From A Static Method

Java: How To

public class ClassFromStatic 
{
	public static void main(java.lang.String[] args) 
	{
		someStaticMethod();
	}

	public static void someStaticMethod() 
	{
		System.out.println("I'm in " + new CurrentClassGetter().getClassName() 
			+ " class");
	}

	public static class CurrentClassGetter extends SecurityManager 
	{
		public String getClassName() 
		{
			return getClassContext()[1].getName();
		}
	}
}

Copyright © 1998-2007, Games++ All rights reserved. | Privacy Policy