make bytecode viewer plugin dynamic

GitOrigin-RevId: 06f0b754ac7f8a53c5d968d0bcd8e0d6f09dfb08
This commit is contained in:
Anna Kozlova
2020-01-12 21:24:11 +01:00
committed by intellij-monorepo-bot
parent 274e81f610
commit c55b444bce

View File

@@ -10,7 +10,7 @@ To view the bytecode, select a class file and open <b>View | Show Bytecode</b>.]
<depends>com.intellij.modules.java</depends>
<extensionPoints>
<extensionPoint name="classSearcher" interface="com.intellij.byteCodeViewer.ClassSearcher"/>
<extensionPoint name="classSearcher" interface="com.intellij.byteCodeViewer.ClassSearcher" dynamic="true"/>
</extensionPoints>
<extensions defaultExtensionNs="com.intellij">
@@ -18,7 +18,7 @@ To view the bytecode, select a class file and open <b>View | Show Bytecode</b>.]
</extensions>
<actions>
<group>
<group id="ByeCodeViewerGroup">
<action id="ByteCodeViewer" class="com.intellij.byteCodeViewer.ShowByteCodeAction" text="Show Bytecode"/>
<add-to-group group-id="QuickActions" anchor="after" relative-to-action="QuickJavaDoc"/>
</group>