blob: dd89e5e24a8d8d4e2fbc299027c4d54f556c5f1e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Bundesinstitut für Risikobewertung and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Bundesinstitut für Risikobewertung - initial API and implementation
*******************************************************************************/
package org.eclipse.stem.model.codegen.descriptor;
public class JavaClassDescriptor
{
public String className;
public JavaClassDescriptor(String className)
{
this.className = className;
}
public String getQualifiedClassName()
{
return className;
}
@Override
public String toString() {
return "JavaClassDescriptor [className=" + className + "]";
}
}