publisherfactory.java
来自「OR Mapping工具」· Java 代码 · 共 24 行
JAVA
24 行
package org.ephman.junit;import org.ephman.junit.generated.*;import org.ephman.abra.database.*;import org.ephman.abra.utils.Identified;import java.sql.*;public class PublisherFactory extends AbstractPublisherFactory { private static PublisherFactory theInstance = null; public static PublisherFactory getInstance () { if (theInstance == null) { synchronized (PublisherFactory.class) { if (theInstance == null) theInstance = new PublisherFactory (); } } return theInstance; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?