File tree Expand file tree Collapse file tree
src/main/java/org/magic/gui/dashlet Expand file tree Collapse file tree Original file line number Diff line number Diff line change 200200 <dependency >
201201 <groupId >com.github.nicho92</groupId >
202202 <artifactId >cardnexus-api-java</artifactId >
203- <version >1.4.34 </version >
203+ <version >1.4.35 </version >
204204 </dependency >
205205 <dependency >
206206 <groupId >com.github.nicho92</groupId >
Original file line number Diff line number Diff line change 1+ package org .magic .gui .dashlet ;
2+
3+ import javax .swing .JComponent ;
4+
5+ import org .api .cardnexus .gui .NexusAccountPanel ;
6+ import org .magic .api .interfaces .abstracts .extra .AbstractNexusDashlet ;
7+
8+ public class NexusAccountDashlet extends AbstractNexusDashlet {
9+
10+
11+
12+ /**
13+ *
14+ */
15+ private static final long serialVersionUID = 1L ;
16+
17+ @ Override
18+ public String getName () {
19+ return "Nexus Account" ;
20+ }
21+
22+ @ Override
23+ protected JComponent getNexusComponent () {
24+ return new NexusAccountPanel ();
25+ }
26+
27+ }
You can’t perform that action at this time.
0 commit comments