Package org.apache.hdt.ui.internal.hdfs

Examples of org.apache.hdt.ui.internal.hdfs.HDFSFileStorePropertySource


  @Override
  public Object getAdapter(Object adaptableObject, Class adapterType) {
    if (adaptableObject instanceof HDFSFileStore) {
      HDFSFileStore fs = (HDFSFileStore) adaptableObject;
      if (adapterType == IPropertySource.class)
        return new HDFSFileStorePropertySource(fs);
    } else if (adaptableObject instanceof ZNode) {
      ZNode z = (ZNode) adaptableObject;
      return new ZNodePropertySource(z);
    }
    return null;
View Full Code Here

TOP

Related Classes of org.apache.hdt.ui.internal.hdfs.HDFSFileStorePropertySource

Copyright © 2018 www.massapicom. 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.