This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| jTimeLabel1.startTimer(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Copyright 2011 StripBandunk | |
| Licensed under the Apache License, Version 2.0 (the "License"); | |
| you may not use this file except in compliance with the License. | |
| You may obtain a copy of the License at | |
| http://www.apache.org/licenses/LICENSE-2.0 | |
| Unless required by applicable law or agreed to in writing, software |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Long size = repository.count(); | |
| Group group = new Group(); | |
| group.setName("Administrator"); | |
| controller.processCreate(group); | |
| Assert.assertNotNull(group.getId()); | |
| Assert.assertNotNull(group.getCreatedDate()); | |
| Assert.assertNotNull(group.getLastModifiedDate()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PanelMahasiswa panelMahasiswa = new PanelMahasiswa(); | |
| LayerUI<PanelMahasiswa> layerUI = new MyLayer(); | |
| JLayer<PanelMahasiswa> jLayer = new JLayer<PanelMahasiswa>(panelMahasiswa, layerUI); | |
| getContentPane().add(jLayer); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- | |
| -- Table structure for table `employees` | |
| -- | |
| CREATE TABLE IF NOT EXISTS `employees` ( | |
| `employee_id` int(6) NOT NULL DEFAULT '0', | |
| `first_name` varchar(20) DEFAULT NULL, | |
| `last_name` varchar(25) NOT NULL | |
| ) ENGINE=InnoDB; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <table border="1"> | |
| <thead> | |
| <tr> | |
| <th>Employee Id</th> | |
| <th>First name</th> | |
| <th>Last Name</th> | |
| </tr> | |
| </thead> | |
| <tbody> | |
| <?php |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gem install sinatra |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo@echo-ubuntu:~/Desktop/JGlassPane$ mvn compile | |
| [INFO] Scanning for projects... | |
| [INFO] ------------------------------------------------------------------------ | |
| [INFO] Reactor Build Order: | |
| [INFO] | |
| [INFO] JGlassPane | |
| [INFO] JGlassPaneTest | |
| [INFO] JGlassPane Framework | |
| [INFO] | |
| [INFO] ------------------------------------------------------------------------ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| component = new MessageComponent(); | |
| glassPane.addGlassPaneComponent(component); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copyright (c) 2011, StripBandunk and/or its affiliates. All rights reserved. | |
| * | |
| * http://stripbandunk.com/ | |
| * | |
| * STRIPBANDUNK PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. | |
| */ | |
| package khannedy.belajar.belajarlog4j; | |
| import org.apache.log4j.BasicConfigurator; |