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

com.alogic.vfs.context.InnerContext Maven / Gradle / Ivy

package com.alogic.vfs.context;

import com.alogic.vfs.core.VirtualFileSystem;
import com.alogic.vfs.local.LocalFileSystem;
import com.anysoft.context.Inner;

/**
 * Source文件中内置的context
 * 
 * @author duanyy
 * 
 */
public class InnerContext  extends Inner{

	@Override
	public String getObjectName() {
		return "fs";
	}

	@Override
	public String getDefaultClass() {
		return LocalFileSystem.class.getName();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy