mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-12-11 12:21:34 +01:00
[ONOS-4490] yang grouping defect fix
Change-Id: Ibea5b1207c5f4a991e1550863a5eb4ce1774e8dc
This commit is contained in:
parent
b69ecd9509
commit
f441a062de
@ -19,6 +19,8 @@ import java.io.IOException;
|
|||||||
|
|
||||||
import org.onosproject.yangutils.datamodel.YangGrouping;
|
import org.onosproject.yangutils.datamodel.YangGrouping;
|
||||||
import org.onosproject.yangutils.translator.tojava.JavaCodeGenerator;
|
import org.onosproject.yangutils.translator.tojava.JavaCodeGenerator;
|
||||||
|
import org.onosproject.yangutils.translator.tojava.JavaFileInfo;
|
||||||
|
import org.onosproject.yangutils.translator.tojava.TempJavaCodeFragmentFiles;
|
||||||
import org.onosproject.yangutils.translator.tojava.utils.YangPluginConfig;
|
import org.onosproject.yangutils.translator.tojava.utils.YangPluginConfig;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -26,7 +28,7 @@ import org.onosproject.yangutils.translator.tojava.utils.YangPluginConfig;
|
|||||||
*/
|
*/
|
||||||
public class YangJavaGrouping
|
public class YangJavaGrouping
|
||||||
extends YangGrouping
|
extends YangGrouping
|
||||||
implements JavaCodeGenerator {
|
implements JavaCodeGeneratorInfo, JavaCodeGenerator {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates YANG Java grouping object.
|
* Creates YANG Java grouping object.
|
||||||
@ -46,4 +48,26 @@ public class YangJavaGrouping
|
|||||||
throws IOException {
|
throws IOException {
|
||||||
/*Do nothing, the uses will copy the contents to the used location*/
|
/*Do nothing, the uses will copy the contents to the used location*/
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public JavaFileInfo getJavaFileInfo() {
|
||||||
|
/*Do nothing, the uses will copy the contents to the used location*/
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setJavaFileInfo(JavaFileInfo javaInfo) {
|
||||||
|
/*Do nothing, the uses will copy the contents to the used location*/
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public TempJavaCodeFragmentFiles getTempJavaCodeFragmentFiles() {
|
||||||
|
/*Do nothing, the uses will copy the contents to the used location*/
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setTempJavaCodeFragmentFiles(TempJavaCodeFragmentFiles fileHandle) {
|
||||||
|
/*Do nothing, the uses will copy the contents to the used location*/
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user