Package org.jetbrains.jps

Source Code of org.jetbrains.jps.InitializingExpando

package org.jetbrains.jps;

import groovy.lang.MissingPropertyException;
import groovy.util.Expando;

/**
* @author max
*/
class InitializingExpando extends Expando {
  public Object getProperty(String property) {
    Object result = super.getProperty(property);
    if (result == null) throw new MissingPropertyException(property, getClass());
    return result;
  }
}
TOP

Related Classes of org.jetbrains.jps.InitializingExpando

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.