Uses of Class
org.jrd.backend.data.VmInfo
-
-
Uses of VmInfo in org.jrd.backend.communication
Fields in org.jrd.backend.communication declared as VmInfo Modifier and Type Field Description private VmInfo
RuntimeCompilerConnector.JrdClassesProvider. vmInfo
Fields in org.jrd.backend.communication with type parameters of type VmInfo Modifier and Type Field Description private static java.util.Map<VmInfo,FsAgent>
FsAgent. AGENTS
Methods in org.jrd.backend.communication with parameters of type VmInfo Modifier and Type Method Description static FsAgent
FsAgent. get(VmInfo vmInfo)
Constructors in org.jrd.backend.communication with parameters of type VmInfo Constructor Description JrdClassesProvider(VmInfo vmInfo, VmManager vmManager)
-
Uses of VmInfo in org.jrd.backend.core
Methods in org.jrd.backend.core with parameters of type VmInfo Modifier and Type Method Description static AgentRequestAction
AgentRequestAction. create(VmInfo vmInfo, java.lang.String hostname, int listenPort, AgentRequestAction.RequestAction action)
static AgentRequestAction
AgentRequestAction. create(VmInfo vmInfo, java.lang.String hostname, int listenPort, AgentRequestAction.RequestAction action, java.lang.String name)
static AgentRequestAction
AgentRequestAction. create(VmInfo vmInfo, java.lang.String hostname, int listenPort, AgentRequestAction.RequestAction action, java.lang.String name, java.lang.String base64body)
-
Uses of VmInfo in org.jrd.backend.data
Fields in org.jrd.backend.data with type parameters of type VmInfo Modifier and Type Field Description static java.util.Comparator<VmInfo>
VmInfo. FS_VM_COMPARATOR
private static java.util.Comparator<VmInfo>
VmInfo. HOSTNAME_COMPARATOR
static java.util.Comparator<VmInfo>
VmInfo. LOCAL_VM_COMPARATOR
private static java.util.Comparator<VmInfo>
VmInfo. PORT_COMPARATOR
static java.util.Comparator<VmInfo>
VmInfo. REMOTE_VM_COMPARATOR
private java.util.Set<VmInfo>
VmManager. vmInfoSet
Methods in org.jrd.backend.data that return VmInfo Modifier and Type Method Description (package private) static VmInfo
VmInfo. base64Deserialize(java.lang.String base64Representation)
VmInfo
VmManager. createFsVM(java.util.List<java.io.File> cp, java.lang.String name, boolean shouldBeSaved)
VmInfo
VmManager. createRemoteVM(java.lang.String hostname, int port)
VmInfo
VmManager. findVmFromPid(java.lang.String param)
VmInfo
VmManager. findVmFromPidNoException(java.lang.String param)
(package private) VmInfo
Cli. getVmInfo(java.lang.String param)
VmInfo
VmManager. getVmInfoByID(java.lang.String vmId)
Methods in org.jrd.backend.data that return types with arguments of type VmInfo Modifier and Type Method Description java.util.List<VmInfo>
Config. getSavedFsVms()
java.util.Set<VmInfo>
VmManager. getVmInfoSet()
Methods in org.jrd.backend.data with parameters of type VmInfo Modifier and Type Method Description void
Config. addSavedFsVm(VmInfo vmInfo)
static void
Cli. initClass(VmInfo vmInfo, VmManager vmManager, java.lang.String fqn, java.io.PrintStream outputMessageStream)
boolean
Config. isSavedFsVm(VmInfo vmInfo)
private void
Cli. listClassesFromVmInfo(VmInfo vmInfo, java.util.List<java.util.regex.Pattern> filter, boolean details)
static VmDecompilerStatus
Cli. obtainClass(VmInfo vmInfo, java.lang.String clazz, VmManager manager)
static java.lang.String[]
Cli. obtainClasses(VmInfo vmInfo, VmManager manager)
static ClassInfo[]
Cli. obtainClassesDetails(VmInfo vmInfo, VmManager manager)
private static java.util.List<ClassInfo>
Cli. obtainFilteredClasses(VmInfo vmInfo, VmManager vmManager, java.util.List<java.util.regex.Pattern> filter, boolean details)
void
Config. removeSavedFsVm(VmInfo vmInfo)
boolean
VmManager. removeVm(VmInfo target)
-
Uses of VmInfo in org.jrd.backend.decompiling
Methods in org.jrd.backend.decompiling with parameters of type VmInfo Modifier and Type Method Description java.lang.String
PluginManager. decompile(DecompilerWrapper wrapper, java.lang.String name, byte[] bytecode, java.lang.String[] options, VmInfo vmInfo, VmManager vmManager)
-
Uses of VmInfo in org.jrd.frontend.frame.main
Fields in org.jrd.frontend.frame.main declared as VmInfo Modifier and Type Field Description private VmInfo
DecompilationController. vmInfo
Fields in org.jrd.frontend.frame.main with type parameters of type VmInfo Modifier and Type Field Description private javax.swing.JList<VmInfo>
MainFrameView. fsVmList
private javax.swing.JList<VmInfo>
MainFrameView. localVmList
private javax.swing.JList<VmInfo>
MainFrameView. remoteVmList
Methods in org.jrd.frontend.frame.main with parameters of type VmInfo Modifier and Type Method Description static AgentRequestAction
DecompilationController. createRequest(VmInfo vmInfo, AgentRequestAction.RequestAction action, java.lang.String... commands)
(package private) void
MainFrameView. setFsVmList(VmInfo[] vmInfos)
(package private) void
MainFrameView. setLocalVmList(VmInfo[] vmInfos)
(package private) void
MainFrameView. setRemoteVmList(VmInfo[] vmInfos)
private void
MainFrameView. setVmList(javax.swing.JList<VmInfo> vmList, VmInfo[] vmInfos)
private boolean
DecompilationController. warnOnOvveridesOfFsVm(VmInfo selectedVm)
static boolean
DecompilationController. warnOnOvveridesOfFsVm(VmInfo vmInfo, javax.swing.JFrame parent)
Method parameters in org.jrd.frontend.frame.main with type arguments of type VmInfo Modifier and Type Method Description private void
DecompilationController. clearOtherList(javax.swing.JList<VmInfo> vmList)
If selected list is remoteVmList clears localVmList and vice versa.
Effectively merging them into one.private void
MainFrameView. setVmList(javax.swing.JList<VmInfo> vmList, VmInfo[] vmInfos)
-
Uses of VmInfo in org.jrd.frontend.frame.main.renderer
Methods in org.jrd.frontend.frame.main.renderer with parameters of type VmInfo Modifier and Type Method Description java.awt.Component
VmListRenderer. getListCellRendererComponent(javax.swing.JList<? extends VmInfo> list, VmInfo vmInfo, int index, boolean isSelected, boolean cellHasFocus)
Method parameters in org.jrd.frontend.frame.main.renderer with type arguments of type VmInfo Modifier and Type Method Description java.awt.Component
VmListRenderer. getListCellRendererComponent(javax.swing.JList<? extends VmInfo> list, VmInfo vmInfo, int index, boolean isSelected, boolean cellHasFocus)
-
Uses of VmInfo in org.jrd.frontend.frame.overwrite
Fields in org.jrd.frontend.frame.overwrite declared as VmInfo Modifier and Type Field Description protected VmInfo
OverwriteClassDialog.CompilerOutputActionFields. vmInfo
private VmInfo
OverwriteClassDialog. vmInfo
Methods in org.jrd.frontend.frame.overwrite with parameters of type VmInfo Modifier and Type Method Description private static OverwriteClassDialog.CompilationWithResult
OverwriteClassDialog. compileWithGui(VmInfo vmInfo, VmManager vmManager, DecompilerWrapper wrapper, boolean hasCompiler, boolean isVerbose, io.github.mkoncek.classpathless.api.IdentifiedSource... sources)
Constructors in org.jrd.frontend.frame.overwrite with parameters of type VmInfo Constructor Description CompilerOutputActionFields(javax.swing.JTextField status, VmInfo vmInfo, VmManager vmManager, PluginManager pm, DecompilerWrapper dwi, boolean haveCompiler, boolean isVerbose, int namingSchema, java.lang.String destination)
OverwriteClassDialog(java.lang.String name, LatestPaths latestPaths, java.lang.String currentBuffer, byte[] cBinBuffer, VmInfo vmInfo, VmManager vmManager, PluginManager pluginManager, DecompilerWrapper selectedDecompiler, boolean isBinaryVisible, boolean isVerbose)
SavingCompilerOutputAction(javax.swing.JTextField status, VmInfo vmInfo, VmManager vmManager, PluginManager pm, DecompilerWrapper dwi, boolean hasCompiler, boolean isVerbose, int namingSchema, java.lang.String destination)
UploadingCompilerOutputAction(javax.swing.JTextField status, VmInfo vmInfo, VmManager vmManager, PluginManager pm, DecompilerWrapper wrapper, boolean hasCompiler, boolean isVerbose, int namingSchema, java.lang.String destination)
-
Uses of VmInfo in org.jrd.frontend.utility
Methods in org.jrd.frontend.utility with parameters of type VmInfo Modifier and Type Method Description private static java.util.Collection<AgentApiGenerator.ClazzMethod>
AgentApiGenerator. getClazzMethods(VmInfo vmInfo, VmManager vmManager, PluginManager pluginManager, java.lang.String innerClazzName, java.lang.String innerClazz)
static void
AgentApiGenerator. initItems(VmInfo vmInfo, VmManager vmManager, PluginManager pluginManager)
private static void
AgentApiGenerator. initItems(VmInfo vmInfo, VmManager vmManager, PluginManager pluginManager, boolean withSignatures)
static boolean
CommonUtils. uploadByGui(VmInfo vmInfo, VmManager vmManager, CommonUtils.StatusKeeper status, java.lang.String clazz, byte[] content)
static java.lang.String
CommonUtils. uploadBytecode(java.lang.String clazz, VmManager vmManager, VmInfo vmInfo, byte[] bytes)
-