All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.jangaroo.properties.model.ResourceBundleClass Maven / Gradle / Ivy

There is a newer version: 4.1.17
Show newest version
/*
 * Copyright (c) 2009, CoreMedia AG, Hamburg. All rights reserved.
 */
package net.jangaroo.properties.model;

import net.jangaroo.properties.PropcHelper;
import net.jangaroo.utils.CompilerUtils;

public final class ResourceBundleClass {

  private String fullClassName;

  public ResourceBundleClass(String fullClassName) {
    this.fullClassName = fullClassName;
  }

  public String getBundleName() {
    return PropcHelper.getBundleName(getClassName());
  }

  public String getClassName() {
    return CompilerUtils.className(fullClassName);
  }

  public String getPackageName() {
    return CompilerUtils.packageName(fullClassName);
  }

  public String getFullClassName() {
    return fullClassName; 
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy