I downloaded the libraries from the site, connected them through Project Structure->Libraries , wrote the code and pops up

Exception in thread "java.lang.NoClassDefFoundError: org / pushingpixels / trident / ease / TimelineEase, tell me what to do? (Code below)

 import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.WindowEvent; import java.awt.event.WindowListener; import java.io.*; import java.util.ArrayList; import org.pushingpixels.substance.api.*; import org.pushingpixels.substance.api.skin.*; /** * Created by Expo1on on 28.07.2014. */ public class Redactor { JFrame f=new JFrame(); static JTabbedPane tp=new JTabbedPane(); static int i=1; public static void main(String[] args) { Redactor r=new Redactor(); setupLAF(); r.go(); } public static void setupLAF() { try { SubstanceLookAndFeel.setSkin(new GraphiteGlassSkin()); SubstanceLookAndFeel.setSkin("org.pushingpixels.substance.api.skin.GraphiteGlassSkin"); UIManager.setLookAndFeel(new SubstanceGraphiteGlassLookAndFeel()); UIManager.setLookAndFeel("org.pushingpixels.substance.api.skin.SubstanceGraphiteGlassLookAndFeel"); } catch (Exception ex) {} } 
  • @ Expo1on, To format a code, select it with the mouse and press the {} button of the editor. - Deleted
  • The library is not enough to connect to the project, still need to add a dependency to the module. - gcoder
  • gcoder, specifically you can? - Expo1on
  • Section [Adding existing libraries to module dependencies] [1]. [1]: jetbrains.com/idea/webhelp/… - gcoder
  • gcoder, did not help, the same error comes out - Expo1on

0