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
package net.orekyuu.javatter.api.twitter.beam; | |
import net.orekyuu.javatter.api.twitter.TwitterUser; | |
public interface JavaBeamBuilder { | |
JavaBeamBuilder javaBeamUpperCase(); | |
JavaBeamBuilder setBiPattern(BiGenerator biGenerator); |
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
import java.util.concurrent.ExecutorService; | |
import java.util.concurrent.Executors; | |
public class Main { | |
public static void main(String[] args) { | |
System.setProperty("debug", "true"); | |
ExecutorService service = Executors.newFixedThreadPool(4); | |
Util util = new Util(2); |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<?import javafx.scene.text.*?> | |
<?import java.lang.*?> | |
<?import javafx.scene.layout.*?> | |
<GridPane xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/8.0.40"> | |
<columnConstraints> | |
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" /> | |
</columnConstraints> |
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
import java.util.Scanner; | |
public class Main { | |
public static void main(String[] args) { | |
Scanner scanner = new Scanner(System.in); | |
try { | |
while (true) { | |
String chinko = scanner.next(); | |
if (chinko.equals("ちんこ")) { | |
System.out.println("まんこ"); |
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
.list-cell { | |
-fx-background-color: rgba(255,255,255,0.7); | |
} | |
.list-view { | |
-fx-background-image: url("/back.png"); | |
-fx-background-repeat: repeat; | |
-fx-background-position: center center; | |
} |
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
package net.orekyuu.example; | |
import net.orekyuu.javatter.api.plugin.OnPostInit; | |
import net.orekyuu.javatter.api.service.TwitterUserService; | |
import javax.inject.Inject; | |
public class ExamplePlugin { | |
@Inject |
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
package net.orekyuu.demo; | |
import javafx.application.Application; | |
import javafx.beans.value.ChangeListener; | |
import javafx.beans.value.ObservableValue; | |
import javafx.concurrent.Worker; | |
import javafx.scene.web.WebEngine; | |
import javafx.scene.web.WebView; | |
import javafx.stage.Stage; |
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
package net.orekyuu.updatename; | |
import net.orekyuu.javatter.api.twitter.TwitterUser; | |
import net.orekyuu.javatter.api.twitter.model.Tweet; | |
public class MessageUtil { | |
public static final String NEW_NAME = "${NEW_NAME}"; | |
public static final String OLD_NAME = "${OLD_NAME}"; | |
public static final String SENDER_SN = "${SENDER_SN}"; |
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
apply plugin: 'java' | |
apply plugin: 'eclipse' | |
apply plugin: 'idea' | |
apply plugin: 'groovy' | |
sourceCompatibility = 1.8 | |
targetCompatibility = 1.8 | |
[compileJava, compileTestJava].each { | |
it.options.encoding = 'UTF-8' |
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
apply plugin: 'java' | |
apply plugin: 'eclipse' | |
apply plugin: 'idea' | |
apply plugin: 'scala' | |
sourceCompatibility = 1.8 | |
targetCompatibility = 1.8 | |
[compileJava, compileTestJava].each { | |
it.options.encoding = 'UTF-8' | |
} |