bugged stringlengths 6 599k | fixed stringlengths 10 599k | __index_level_0__ int64 0 1.13M |
|---|---|---|
public static GroupChatRoom enterRoomOnSameThread(final String roomName, String roomJID, String password) { ChatManager chatManager = SparkManager.getChatManager(); final MultiUserChat groupChat = new MultiUserChat(SparkManager.getConnection(), roomJID); final LocalPreferences pref = SettingsMa... | public static GroupChatRoom enterRoomOnSameThread(final String roomName, String roomJID, String password) { ChatManager chatManager = SparkManager.getChatManager(); final LocalPreferences pref = SettingsManager.getLocalPreferences(); final String nickname = pref.getNickname().trim(); ... | 1,124,913 |
private void addInstrumentation(File file) { if (isClass(file)) { addInstrumentationToSingleClass(file); } else if (file.isDirectory()) { File[] contents = file.listFiles(); for (int i = 0; i < contents.length; i++) addInstrumenta... | private void addInstrumentation(File file) { if (isClass(file)) { addInstrumentationToSingleClass(file); } else if (file.isDirectory()) { File[] contents = file.listFiles(); for (int i = 0; i < contents.length; i++) addInstrumenta... | 1,124,915 |
private void parseArguments(String[] args) { File dataFile = CoverageDataFileHandler.getDefaultDataFile(); // Parse our parameters FileFinder finder = new FileFinder(); for (int i = 0; i < args.length; i++) { if (args[i].equals("--basedir")) finder.add... | private void parseArguments(String[] args) { File dataFile = CoverageDataFileHandler.getDefaultDataFile(); // Parse our parameters List filePaths = new ArrayList(); for (int i = 0; i < args.length; i++) { if (args[i].equals("--basedir")) finder.addBase... | 1,124,916 |
private void parseArguments(String[] args) { File dataFile = CoverageDataFileHandler.getDefaultDataFile(); // Parse our parameters FileFinder finder = new FileFinder(); for (int i = 0; i < args.length; i++) { if (args[i].equals("--basedir")) finder.add... | private void parseArguments(String[] args) { File dataFile = CoverageDataFileHandler.getDefaultDataFile(); // Parse our parameters FileFinder finder = new FileFinder(); for (int i = 0; i < args.length; i++) { if (args[i].equals("--basedir")) finder.add... | 1,124,917 |
private void parseArguments(String[] args) { File dataFile = CoverageDataFileHandler.getDefaultDataFile(); // Parse our parameters FileFinder finder = new FileFinder(); for (int i = 0; i < args.length; i++) { if (args[i].equals("--basedir")) finder.add... | private void parseArguments(String[] args) { File dataFile = CoverageDataFileHandler.getDefaultDataFile(); // Parse our parameters FileFinder finder = new FileFinder(); for (int i = 0; i < args.length; i++) { if (args[i].equals("--basedir")) finder.add... | 1,124,918 |
private void parseArguments(String[] args) { File dataFile = CoverageDataFileHandler.getDefaultDataFile(); // Parse our parameters FileFinder finder = new FileFinder(); for (int i = 0; i < args.length; i++) { if (args[i].equals("--basedir")) finder.add... | private void parseArguments(String[] args) { File dataFile = CoverageDataFileHandler.getDefaultDataFile(); // Parse our parameters FileFinder finder = new FileFinder(); for (int i = 0; i < args.length; i++) { if (args[i].equals("--basedir")) finder.add... | 1,124,919 |
public Object get(final String query) throws NotFoundException { TimedReference r = (TimedReference) _cache.get(query); Object o = null; if (r != null) { o = r.get(); } if (o == null) { r = load(query); if (r != null) { _cache.put(query,r); o =... | public Object get(final String query) throws NotFoundException { TimedReference r; try { r = (TimedReference) _cache.get(query); } catch (NullPointerException e) { throw new NotFoundException(this + " is not initialized", e); } Object o = null; if (r != null) { o = r.get(); } if (o... | 1,124,920 |
public void stuffContext (Context context) throws Exception { context.setEvaluationExceptionHandler ( new DefaultEvaluationExceptionHandler ()); context.put ("d", d); } | public void stuffContext (Context context) throws Exception { context.setEvaluationExceptionHandler ( new DefaultEvaluationExceptionHandler ()); context.put ("d", d); } | 1,124,921 |
public GeronimoServiceFactory(ProxyManager proxyManager, GBeanDefinition gbeanDefinition) { this.proxyManager = proxyManager; this.gbeanDefinition = gbeanDefinition; // add the dependencies String[] dependsOn = gbeanDefinition.getDependsOn(); if (dependsOn != null) { fo... | public GeronimoServiceFactory(RootBeanDefinition beanDefinition, Map dynamicProperties, MetadataManager metadataManager, ProxyManager proxyManager) throws Exception { this.metadataManager = metadataManager; this.proxyManager = proxyManager; this.gbeanDefinition = gbeanDefinition; // add the dep... | 1,124,922 |
public GeronimoServiceFactory(ProxyManager proxyManager, GBeanDefinition gbeanDefinition) { this.proxyManager = proxyManager; this.gbeanDefinition = gbeanDefinition; // add the dependencies String[] dependsOn = gbeanDefinition.getDependsOn(); if (dependsOn != null) { fo... | public GeronimoServiceFactory(ProxyManager proxyManager, GBeanDefinition gbeanDefinition) { this.proxyManager = proxyManager; this.gbeanDefinition = gbeanDefinition; // add the dependencies String[] dependsOn = gbeanDefinition.getDependsOn(); if (dependsOn != null) { fo... | 1,124,923 |
public Object createService(ServiceContext serviceContext) throws Exception { try { Object service = null; ServiceContext oldServiceContext = ServiceContextThreadLocal.get(); try { ServiceContextThreadLocal.set(serviceContext); applicationContext... | public Object createService(ServiceContext serviceContext) throws Exception { try { Object service = null; ServiceContext oldServiceContext = ServiceContextThreadLocal.get(); try { ServiceContextThreadLocal.set(serviceContext); applicationContext... | 1,124,925 |
public Object createService(ServiceContext serviceContext) throws Exception { try { Object service = null; ServiceContext oldServiceContext = ServiceContextThreadLocal.get(); try { ServiceContextThreadLocal.set(serviceContext); applicationContext... | public Object createService(ServiceContext serviceContext) throws Exception { try { Object service = null; ServiceContext oldServiceContext = ServiceContextThreadLocal.get(); try { ServiceContextThreadLocal.set(serviceContext); applicationContext... | 1,124,926 |
public void destroyService(ServiceContext serviceContext, Object service) { // update the persistent attributes try { if (service != null) { // update the persistent values GBeanDefinition gbeanDefinition = new GBeanDefinition(this.gbeanDefinition); ... | public void destroyService(ServiceContext serviceContext, Object service) { // update the persistent attributes try { if (service != null) { // update the persistent values GBeanDefinition gbeanDefinition = new GBeanDefinition(this.gbeanDefinition); ... | 1,124,928 |
private Object getCurrentValue(Map getters, Object service, String propertyName, Object defaultValue) { Object value = defaultValue; try { Method getter = (Method) getters.get(propertyName); if (getter != null) { value = getter.invoke(service, null); } ... | private Object getCurrentValue(Map getters, Object service, String propertyName, Object defaultValue) { Object value = defaultValue; try { Method getter = (Method) getters.get(propertyName); if (getter != null) { value = getter.invoke(service, null); } ... | 1,124,929 |
public Object getProperty(String propertyName) { PropertyValue propertyValue = gbeanDefinition.getPropertyValues().getPropertyValue(propertyName); if (propertyValue != null) { return propertyValue.getValue(); } propertyValue = gbeanDefinition.getDynamicPropertyValues().getProp... | public Object getProperty(String propertyName) { if (persistentProperties == null || !persistentProperties.contains(propertyName)) { throw new IllegalArgumentException("Property is not persistent:" + " propertyName=" + propertyName + ", serviceType: " + beanDefinition.getBeanClassName()); } PropertyValue pr... | 1,124,931 |
public Object getProperty(String propertyName) { PropertyValue propertyValue = gbeanDefinition.getPropertyValues().getPropertyValue(propertyName); if (propertyValue != null) { return propertyValue.getValue(); } propertyValue = gbeanDefinition.getDynamicPropertyValues().getProp... | public Object getProperty(String propertyName) { PropertyValue propertyValue = gbeanDefinition.getPropertyValues().getPropertyValue(propertyName); if (propertyValue != null) { return propertyValue.getValue(); } propertyValue = gbeanDefinition.getDynamicPropertyValues().getProp... | 1,124,932 |
public Object getProperty(String propertyName) { PropertyValue propertyValue = gbeanDefinition.getPropertyValues().getPropertyValue(propertyName); if (propertyValue != null) { return propertyValue.getValue(); } propertyValue = gbeanDefinition.getDynamicPropertyValues().getProp... | public Object getProperty(String propertyName) { PropertyValue propertyValue = gbeanDefinition.getPropertyValues().getPropertyValue(propertyName); if (propertyValue != null) { return propertyValue.getValue(); } propertyValue = gbeanDefinition.getDynamicPropertyValues().getProp... | 1,124,933 |
public Set getPropertyNames() { Set propertyNames = new HashSet(); PropertyValue[] propertyValues = gbeanDefinition.getPropertyValues().getPropertyValues(); for (int i = 0; i < propertyValues.length; i++) { PropertyValue propertyValue = propertyValues[i]; propertyNames.add... | public Set getPropertyNames() { Set propertyNames = new HashSet(); PropertyValue[] propertyValues = gbeanDefinition.getPropertyValues().getPropertyValues(); for (int i = 0; i < propertyValues.length; i++) { PropertyValue propertyValue = propertyValues[i]; propertyNames.add... | 1,124,934 |
public Set getPropertyNames() { Set propertyNames = new HashSet(); PropertyValue[] propertyValues = gbeanDefinition.getPropertyValues().getPropertyValues(); for (int i = 0; i < propertyValues.length; i++) { PropertyValue propertyValue = propertyValues[i]; propertyNames.add... | public Set getPropertyNames() { Set propertyNames = new HashSet(); PropertyValue[] propertyValues = gbeanDefinition.getPropertyValues().getPropertyValues(); for (int i = 0; i < propertyValues.length; i++) { PropertyValue propertyValue = propertyValues[i]; propertyNames.add... | 1,124,935 |
public boolean isEnabled() { return gbeanDefinition.isEnabled(); } | public boolean isEnabled() { return enabled; } | 1,124,936 |
public void setEnabled(boolean enabled) { gbeanDefinition.setEnabled(enabled); } | public void setEnabled(boolean enabled) { this.enabled = enabled; } | 1,124,937 |
public void setProperty(String propertyName, Object persistentValue) { if (gbeanDefinition.getPropertyValues().contains(propertyName)) { gbeanDefinition.getPropertyValues().removePropertyValue(propertyName); gbeanDefinition.getPropertyValues().addPropertyValue(propertyName, persistentVa... | public void setProperty(String propertyName, Object persistentValue) { if (gbeanDefinition.getPropertyValues().contains(propertyName)) { gbeanDefinition.getPropertyValues().removePropertyValue(propertyName); gbeanDefinition.getPropertyValues().addPropertyValue(propertyName, persistentVa... | 1,124,938 |
public void setProperty(String propertyName, Object persistentValue) { if (gbeanDefinition.getPropertyValues().contains(propertyName)) { gbeanDefinition.getPropertyValues().removePropertyValue(propertyName); gbeanDefinition.getPropertyValues().addPropertyValue(propertyName, persistentVa... | public void setProperty(String propertyName, Object persistentValue) { if (gbeanDefinition.getPropertyValues().contains(propertyName)) { gbeanDefinition.getPropertyValues().removePropertyValue(propertyName); gbeanDefinition.getPropertyValues().addPropertyValue(propertyName, persistentVa... | 1,124,939 |
private void updatePersistentValues(Object service, GBeanDefinition gbeanDefinition) { Map getters = new HashMap(); Method[] methods = service.getClass().getMethods(); for (int i = 0; i < methods.length; i++) { Method method = methods[i]; String methodName = method.getName... | private void updatePersistentValues(Object service, RootBeanDefinition beanDefinition) { Map getters = new HashMap(); Method[] methods = service.getClass().getMethods(); for (int i = 0; i < methods.length; i++) { Method method = methods[i]; String methodName = method.getNa... | 1,124,940 |
private void updatePersistentValues(Object service, GBeanDefinition gbeanDefinition) { Map getters = new HashMap(); Method[] methods = service.getClass().getMethods(); for (int i = 0; i < methods.length; i++) { Method method = methods[i]; String methodName = method.getName... | private void updatePersistentValues(Object service, GBeanDefinition gbeanDefinition) { Map getters = new HashMap(); Method[] methods = service.getClass().getMethods(); for (int i = 0; i < methods.length; i++) { Method method = methods[i]; String methodName = method.getName... | 1,124,941 |
private void updatePersistentValues(Object service, GBeanDefinition gbeanDefinition) { Map getters = new HashMap(); Method[] methods = service.getClass().getMethods(); for (int i = 0; i < methods.length; i++) { Method method = methods[i]; String methodName = method.getName... | private void updatePersistentValues(Object service, GBeanDefinition gbeanDefinition) { Map getters = new HashMap(); Method[] methods = service.getClass().getMethods(); for (int i = 0; i < methods.length; i++) { Method method = methods[i]; String methodName = method.getName... | 1,124,942 |
private void updatePersistentValues(Object service, GBeanDefinition gbeanDefinition) { Map getters = new HashMap(); Method[] methods = service.getClass().getMethods(); for (int i = 0; i < methods.length; i++) { Method method = methods[i]; String methodName = method.getName... | private void updatePersistentValues(Object service, GBeanDefinition gbeanDefinition) { Map getters = new HashMap(); Method[] methods = service.getClass().getMethods(); for (int i = 0; i < methods.length; i++) { Method method = methods[i]; String methodName = method.getName... | 1,124,943 |
private void updatePersistentValues(Object service, GBeanDefinition gbeanDefinition) { Map getters = new HashMap(); Method[] methods = service.getClass().getMethods(); for (int i = 0; i < methods.length; i++) { Method method = methods[i]; String methodName = method.getName... | private void updatePersistentValues(Object service, GBeanDefinition gbeanDefinition) { Map getters = new HashMap(); Method[] methods = service.getClass().getMethods(); for (int i = 0; i < methods.length; i++) { Method method = methods[i]; String methodName = method.getName... | 1,124,944 |
public void initialize() { if (Spark.isMac()) { roomListener = new DockRoomListener(); SparkManager.getChatManager().addChatRoomListener(roomListener); // Remove the About Menu Item from the help menu MainWindow mainWindow = SparkManager.getMainWindow(); ... | public void initialize() { if (Spark.isMac()) { roomListener = new DockRoomListener(); SparkManager.getChatManager().addChatRoomListener(roomListener); // Remove the About Menu Item from the help menu MainWindow mainWindow = SparkManager.getMainWindow(); ... | 1,124,945 |
public void initialize() { if (Spark.isMac()) { roomListener = new DockRoomListener(); SparkManager.getChatManager().addChatRoomListener(roomListener); // Remove the About Menu Item from the help menu MainWindow mainWindow = SparkManager.getMainWindow(); ... | public void initialize() { if (Spark.isMac()) { roomListener = new DockRoomListener(); SparkManager.getChatManager().addChatRoomListener(roomListener); // Remove the About Menu Item from the help menu MainWindow mainWindow = SparkManager.getMainWindow(); ... | 1,124,946 |
public void setUp() { clazz1 = new Clazz("HelloWorld"); clazz1.setNumberOfBranches(4); clazz1.setNumberOfCoveredBranches(2); clazz1.setNumberOfCoveredLines(20); clazz1.setNumberOfLines(40); for (int i = 0; i < clazz1.getNumberOfLines(); i++) { clazz1.addLine(i + 1, 5 * (i + 1)); } clazz2 = new Clazz("com.ex... | public void setUp() { clazz1 = new Clazz("HelloWorld"); clazz1.setNumberOfBranches(4); clazz1.setNumberOfCoveredBranches(2); clazz1.setNumberOfCoveredLines(20); clazz1.setNumberOfLines(40); for (int i = 0; i < clazz1.getNumberOfLines(); i++) { clazz1.addLine(i + 1, 5 * (i + 1)); } clazz2 = new Clazz("com.ex... | 1,124,949 |
public void testCoverage() { Coverage coverage = new Coverage(); assertEquals(0, coverage.getNumberOfBranches()); assertEquals(0, coverage.getNumberOfLines()); assertEquals(0, coverage.getBranchCoverageRate(), 0.00001); assertEquals(1, coverage.getLineCoverageRate(), 0.00001); assertNotNull(coverage.getPackages(... | public void testCoverage() { CoverageReport coverage = new CoverageReport(Collections.EMPTY_MAP); assertEquals(0, coverage.getNumberOfBranches()); assertEquals(0, coverage.getNumberOfLines()); assertEquals(0, coverage.getBranchCoverageRate(), 0.00001); assertEquals(1, coverage.getLineCoverageRate(), 0.00001); as... | 1,124,950 |
public void testCoverage() { Coverage coverage = new Coverage(); assertEquals(0, coverage.getNumberOfBranches()); assertEquals(0, coverage.getNumberOfLines()); assertEquals(0, coverage.getBranchCoverageRate(), 0.00001); assertEquals(1, coverage.getLineCoverageRate(), 0.00001); assertNotNull(coverage.getPackages(... | public void testCoverage() { Coverage coverage = new Coverage(); assertEquals(0, coverage.getNumberOfBranches()); assertEquals(0, coverage.getNumberOfLines()); assertEquals(0, coverage.getBranchCoverageRate(), 0.00001); assertEquals(1, coverage.getLineCoverageRate(), 0.00001); assertNotNull(coverage.getPackages(... | 1,124,951 |
public void testCoverage() { Coverage coverage = new Coverage(); assertEquals(0, coverage.getNumberOfBranches()); assertEquals(0, coverage.getNumberOfLines()); assertEquals(0, coverage.getBranchCoverageRate(), 0.00001); assertEquals(1, coverage.getLineCoverageRate(), 0.00001); assertNotNull(coverage.getPackages(... | public void testCoverage() { Coverage coverage = new Coverage(); assertEquals(0, coverage.getNumberOfBranches()); assertEquals(0, coverage.getNumberOfLines()); assertEquals(0, coverage.getBranchCoverageRate(), 0.00001); assertEquals(1, coverage.getLineCoverageRate(), 0.00001); assertNotNull(coverage.getPackages(... | 1,124,952 |
public final String toString () { return "macro-property:" + _vname; } | public final String toString () { return "macro-property:" + getVariableName(); } | 1,124,953 |
public void initialize() { boolean enabled = Enterprise.containsFeature(Enterprise.VCARD_FEATURE); if (!enabled) { return; } // Add Actions Menu final JMenu contactsMenu = SparkManager.getMainWindow().getMenuByName(Res.getString("menuitem.contacts")); final JMenu... | public void initialize() { boolean enabled = Enterprise.containsFeature(Enterprise.VCARD_FEATURE); if (!enabled) { return; } // Add Actions Menu final JMenu contactsMenu = SparkManager.getMainWindow().getMenuByName(Res.getString("menuitem.contacts")); final JMenu... | 1,124,954 |
public void load(String path) throws XmlException, IOException{ System.out.println("Attempting to load path "+path); IWUserContext iwuc = IWContext.getInstance(); IWApplicationContext iwac = iwuc.getApplicationContext(); IWSlideSession session = (IWSlideSession)IBOLookup.getSessionInstance(iwuc,IWSlideSession.cl... | public void load(String path) throws XmlException, IOException{ System.out.println("Attempting to load path "+path); IWUserContext iwuc = IWContext.getInstance(); IWSlideSession session = (IWSlideSession)IBOLookup.getSessionInstance(iwuc,IWSlideSession.class); IWSlideService service = (IWSlideService)IBOLookup... | 1,124,955 |
public void load(String path) throws XmlException, IOException{ System.out.println("Attempting to load path "+path); IWUserContext iwuc = IWContext.getInstance(); IWApplicationContext iwac = iwuc.getApplicationContext(); IWSlideSession session = (IWSlideSession)IBOLookup.getSessionInstance(iwuc,IWSlideSession.cl... | public void load(String path) throws XmlException, IOException{ System.out.println("Attempting to load path "+path); IWUserContext iwuc = IWContext.getInstance(); IWApplicationContext iwac = iwuc.getApplicationContext(); IWSlideSession session = (IWSlideSession)IBOLookup.getSessionInstance(iwuc,IWSlideSession.cl... | 1,124,956 |
public void store() throws IDOStoreException{// public Boolean store() { boolean storeOk = true; clearErrorKeys(); ArticleDocument articleDoc = ArticleDocument.Factory.newInstance(); ArticleDocument.Article article = articleDoc.addNewArticle(); if (getHeadline().trim().equals("")) { addErrorKey(KE... | public void store() throws IDOStoreException{// public Boolean store() { boolean storeOk = true; clearErrorKeys(); ArticleDocument articleDoc = ArticleDocument.Factory.newInstance(); ArticleDocument.Article article = articleDoc.addNewArticle(); if (getHeadline().trim().equals("")) { addErrorKey(KE... | 1,124,957 |
public void store() throws IDOStoreException{// public Boolean store() { boolean storeOk = true; clearErrorKeys(); ArticleDocument articleDoc = ArticleDocument.Factory.newInstance(); ArticleDocument.Article article = articleDoc.addNewArticle(); if (getHeadline().trim().equals("")) { addErrorKey(KE... | public void store() throws IDOStoreException{// public Boolean store() { boolean storeOk = true; clearErrorKeys(); ArticleDocument articleDoc = ArticleDocument.Factory.newInstance(); ArticleDocument.Article article = articleDoc.addNewArticle(); if (getHeadline().trim().equals("")) { addErrorKey(KE... | 1,124,958 |
public String getName() { return _name; } | final public String getName() { return _name; } | 1,124,959 |
public Object getValue() { return _value; } | final public Object getValue() { return _value; } | 1,124,960 |
final public Object build(BuildContext bc) throws BuildException { Vector block = new Vector(20); StringBuffer buf = new StringBuffer(512); flatten(bc,block,buf,elements()); if (buf.length() > 0) { block.addElement(MacroAdapter.createMacro(buf.toString())); } Macro[] res... | final public Object build(BuildContext bc) throws BuildException { Vector block = new Vector(20); StringBuffer buf = new StringBuffer(512); flatten(bc,block,buf,elements()); if (buf.length() > 0) { block.addElement(MacroAdapter.createMacro(buf.toString(),bc.getEncoding())); }... | 1,124,961 |
private void flatten(BuildContext bc, Vector block, StringBuffer buf, Enumeration e) throws BuildException { while(e.hasMoreElements()) { Object cur = e.nextElement(); Object o = cur; if (o instanceof BlockBuilder) { Enumeration e2 = ((BlockBuilder) o).elements... | private void flatten(BuildContext bc, Vector block, StringBuffer buf, Enumeration e) throws BuildException { while(e.hasMoreElements()) { Object cur = e.nextElement(); Object o = cur; if (o instanceof BlockBuilder) { Enumeration e2 = ((BlockBuilder) o).elements... | 1,124,962 |
final protected void execute(Template tmpl, WebContext c) { FastWriter fw = null; boolean timing = Flags.PROFILE && c.isTiming(); try { if (timing) c.startTiming("Template.write", tmpl); try { HttpServletResponse resp= c.getResponse(); Locale locale = (Locale) t... | final protected void execute(Template tmpl, WebContext c) { FastWriter fw = null; boolean timing = Flags.PROFILE && c.isTiming(); try { if (timing) c.startTiming("Template.write", tmpl); try { HttpServletResponse resp= c.getResponse(); Locale locale = (Locale) t... | 1,124,963 |
final protected void execute(Template tmpl, WebContext c) { FastWriter fw = null; boolean timing = Flags.PROFILE && c.isTiming(); try { if (timing) c.startTiming("Template.write", tmpl); try { HttpServletResponse resp= c.getResponse(); Locale locale = (Locale) t... | final protected void execute(Template tmpl, WebContext c) { FastWriter fw = null; boolean timing = Flags.PROFILE && c.isTiming(); try { if (timing) c.startTiming("Template.write", tmpl); try { HttpServletResponse resp= c.getResponse(); Locale locale = (Locale) t... | 1,124,964 |
public WebMacro initWebMacro() throws InitException { ClassLoader cl = this.getClass().getClassLoader(); System.out.println("WMServlet init: classloader="+cl); if (cl == null) { return new WM(); } else { System.out.println("WMServlet init: defaults="+cl.getResource("WebMac... | public WebMacro initWebMacro() throws InitException { ClassLoader cl = this.getClass().getClassLoader(); System.out.println("WMServlet init: classloader="+cl); if (cl == null) { return new WM(); } else { System.out.println("WMServlet init: defaults="+cl.getResource("WebMac... | 1,124,965 |
public Main(String[] args) throws MalformedPatternException { Header.print(System.out); System.out.println("Cobertura coverage check"); LongOpt[] longOpts = new LongOpt[4]; longOpts[0] = new LongOpt("branch", LongOpt.REQUIRED_ARGUMENT, null, 'b'); longOpts[2] = new LongOpt("datafile", LongOpt.REQUIRED_ARGUMENT... | public Main(String[] args) throws MalformedPatternException { Header.print(System.out); LongOpt[] longOpts = new LongOpt[4]; longOpts[0] = new LongOpt("branch", LongOpt.REQUIRED_ARGUMENT, null, 'b'); longOpts[2] = new LongOpt("datafile", LongOpt.REQUIRED_ARGUMENT, null, 'd'); longOpts[3] = new LongOpt("ig... | 1,124,966 |
public Main(String[] args) throws MalformedPatternException { Header.print(System.out); System.out.println("Cobertura coverage check"); LongOpt[] longOpts = new LongOpt[4]; longOpts[0] = new LongOpt("branch", LongOpt.REQUIRED_ARGUMENT, null, 'b'); longOpts[2] = new LongOpt("datafile", LongOpt.REQUIRED_ARGUMENT... | public Main(String[] args) throws MalformedPatternException { Header.print(System.out); System.out.println("Cobertura coverage check"); LongOpt[] longOpts = new LongOpt[4]; longOpts[0] = new LongOpt("branch", LongOpt.REQUIRED_ARGUMENT, null, 'b'); longOpts[2] = new LongOpt("datafile", LongOpt.REQUIRED_ARGUMENT... | 1,124,967 |
public Main(String[] args) throws MalformedPatternException { Header.print(System.out); System.out.println("Cobertura coverage check"); LongOpt[] longOpts = new LongOpt[4]; longOpts[0] = new LongOpt("branch", LongOpt.REQUIRED_ARGUMENT, null, 'b'); longOpts[2] = new LongOpt("datafile", LongOpt.REQUIRED_ARGUMENT... | public Main(String[] args) throws MalformedPatternException { Header.print(System.out); System.out.println("Cobertura coverage check"); LongOpt[] longOpts = new LongOpt[4]; longOpts[0] = new LongOpt("branch", LongOpt.REQUIRED_ARGUMENT, null, 'b'); longOpts[2] = new LongOpt("datafile", LongOpt.REQUIRED_ARGUMENT... | 1,124,968 |
public Main(String[] args) throws MalformedPatternException { Header.print(System.out); System.out.println("Cobertura coverage check"); LongOpt[] longOpts = new LongOpt[4]; longOpts[0] = new LongOpt("branch", LongOpt.REQUIRED_ARGUMENT, null, 'b'); longOpts[2] = new LongOpt("datafile", LongOpt.REQUIRED_ARGUMENT... | public Main(String[] args) throws MalformedPatternException { Header.print(System.out); System.out.println("Cobertura coverage check"); LongOpt[] longOpts = new LongOpt[4]; longOpts[0] = new LongOpt("branch", LongOpt.REQUIRED_ARGUMENT, null, 'b'); longOpts[2] = new LongOpt("datafile", LongOpt.REQUIRED_ARGUMENT... | 1,124,969 |
public Main(String[] args) throws MalformedPatternException { Header.print(System.out); System.out.println("Cobertura coverage check"); LongOpt[] longOpts = new LongOpt[4]; longOpts[0] = new LongOpt("branch", LongOpt.REQUIRED_ARGUMENT, null, 'b'); longOpts[2] = new LongOpt("datafile", LongOpt.REQUIRED_ARGUMENT... | public Main(String[] args) throws MalformedPatternException { Header.print(System.out); System.out.println("Cobertura coverage check"); LongOpt[] longOpts = new LongOpt[4]; longOpts[0] = new LongOpt("branch", LongOpt.REQUIRED_ARGUMENT, null, 'b'); longOpts[2] = new LongOpt("datafile", LongOpt.REQUIRED_ARGUMENT... | 1,124,970 |
public Main(String[] args) throws MalformedPatternException { Header.print(System.out); System.out.println("Cobertura coverage check"); LongOpt[] longOpts = new LongOpt[4]; longOpts[0] = new LongOpt("branch", LongOpt.REQUIRED_ARGUMENT, null, 'b'); longOpts[2] = new LongOpt("datafile", LongOpt.REQUIRED_ARGUMENT... | public Main(String[] args) throws MalformedPatternException { Header.print(System.out); System.out.println("Cobertura coverage check"); LongOpt[] longOpts = new LongOpt[4]; longOpts[0] = new LongOpt("branch", LongOpt.REQUIRED_ARGUMENT, null, 'b'); longOpts[2] = new LongOpt("datafile", LongOpt.REQUIRED_ARGUMENT... | 1,124,971 |
public Main(String[] args) throws MalformedPatternException { Header.print(System.out); System.out.println("Cobertura coverage check"); LongOpt[] longOpts = new LongOpt[4]; longOpts[0] = new LongOpt("branch", LongOpt.REQUIRED_ARGUMENT, null, 'b'); longOpts[2] = new LongOpt("datafile", LongOpt.REQUIRED_ARGUMENT... | public Main(String[] args) throws MalformedPatternException { Header.print(System.out); System.out.println("Cobertura coverage check"); LongOpt[] longOpts = new LongOpt[4]; longOpts[0] = new LongOpt("branch", LongOpt.REQUIRED_ARGUMENT, null, 'b'); longOpts[2] = new LongOpt("datafile", LongOpt.REQUIRED_ARGUMENT... | 1,124,972 |
public Main(String[] args) throws MalformedPatternException { Header.print(System.out); System.out.println("Cobertura coverage check"); LongOpt[] longOpts = new LongOpt[4]; longOpts[0] = new LongOpt("branch", LongOpt.REQUIRED_ARGUMENT, null, 'b'); longOpts[2] = new LongOpt("datafile", LongOpt.REQUIRED_ARGUMENT... | public Main(String[] args) throws MalformedPatternException { Header.print(System.out); System.out.println("Cobertura coverage check"); LongOpt[] longOpts = new LongOpt[4]; longOpts[0] = new LongOpt("branch", LongOpt.REQUIRED_ARGUMENT, null, 'b'); longOpts[2] = new LongOpt("datafile", LongOpt.REQUIRED_ARGUMENT... | 1,124,973 |
public Main(String[] args) throws MalformedPatternException { Header.print(System.out); System.out.println("Cobertura coverage check"); LongOpt[] longOpts = new LongOpt[4]; longOpts[0] = new LongOpt("branch", LongOpt.REQUIRED_ARGUMENT, null, 'b'); longOpts[2] = new LongOpt("datafile", LongOpt.REQUIRED_ARGUMENT... | public Main(String[] args) throws MalformedPatternException { Header.print(System.out); System.out.println("Cobertura coverage check"); LongOpt[] longOpts = new LongOpt[4]; longOpts[0] = new LongOpt("branch", LongOpt.REQUIRED_ARGUMENT, null, 'b'); longOpts[2] = new LongOpt("datafile", LongOpt.REQUIRED_ARGUMENT... | 1,124,974 |
public Main(String[] args) throws MalformedPatternException { Header.print(System.out); System.out.println("Cobertura coverage check"); LongOpt[] longOpts = new LongOpt[4]; longOpts[0] = new LongOpt("branch", LongOpt.REQUIRED_ARGUMENT, null, 'b'); longOpts[2] = new LongOpt("datafile", LongOpt.REQUIRED_ARGUMENT... | public Main(String[] args) throws MalformedPatternException { Header.print(System.out); System.out.println("Cobertura coverage check"); LongOpt[] longOpts = new LongOpt[4]; longOpts[0] = new LongOpt("branch", LongOpt.REQUIRED_ARGUMENT, null, 'b'); longOpts[2] = new LongOpt("datafile", LongOpt.REQUIRED_ARGUMENT... | 1,124,975 |
public Main(String[] args) throws MalformedPatternException { Header.print(System.out); System.out.println("Cobertura coverage check"); LongOpt[] longOpts = new LongOpt[4]; longOpts[0] = new LongOpt("branch", LongOpt.REQUIRED_ARGUMENT, null, 'b'); longOpts[2] = new LongOpt("datafile", LongOpt.REQUIRED_ARGUMENT... | public Main(String[] args) throws MalformedPatternException { Header.print(System.out); System.out.println("Cobertura coverage check"); LongOpt[] longOpts = new LongOpt[4]; longOpts[0] = new LongOpt("branch", LongOpt.REQUIRED_ARGUMENT, null, 'b'); longOpts[2] = new LongOpt("datafile", LongOpt.REQUIRED_ARGUMENT... | 1,124,976 |
public Main(String[] args) throws MalformedPatternException { Header.print(System.out); System.out.println("Cobertura coverage check"); LongOpt[] longOpts = new LongOpt[4]; longOpts[0] = new LongOpt("branch", LongOpt.REQUIRED_ARGUMENT, null, 'b'); longOpts[2] = new LongOpt("datafile", LongOpt.REQUIRED_ARGUMENT... | public Main(String[] args) throws MalformedPatternException { Header.print(System.out); System.out.println("Cobertura coverage check"); LongOpt[] longOpts = new LongOpt[4]; longOpts[0] = new LongOpt("branch", LongOpt.REQUIRED_ARGUMENT, null, 'b'); longOpts[2] = new LongOpt("datafile", LongOpt.REQUIRED_ARGUMENT... | 1,124,977 |
CoverageRate findMinimumCoverageRate(String classname) { Iterator i = minimumCoverageRates.entrySet().iterator(); while (i.hasNext()) { Map.Entry entry = (Map.Entry)i.next(); if (pm.matches(classname, (Pattern)entry.getKey())) { return (CoverageRate)entry.getValue(); } } return minimumCoverageRate; } | CoverageRate findMinimumCoverageRate(String classname) { Iterator i = minimumCoverageRates.entrySet().iterator(); while (i.hasNext()) { Map.Entry entry = (Map.Entry)i.next(); if (pm.matches(classname, (Pattern)entry.getKey())) { return (CoverageRate)entry.getValue(); } } return minimumCoverageRate; } | 1,124,979 |
CoverageRate findMinimumCoverageRate(String classname) { Iterator i = minimumCoverageRates.entrySet().iterator(); while (i.hasNext()) { Map.Entry entry = (Map.Entry)i.next(); if (pm.matches(classname, (Pattern)entry.getKey())) { return (CoverageRate)entry.getValue(); } } return minimumCoverageRate; } | CoverageRate findMinimumCoverageRate(String classname) { Iterator i = minimumCoverageRates.entrySet().iterator(); while (i.hasNext()) { Map.Entry entry = (Map.Entry)iter.next(); if (pm.matches(classname, (Pattern)entry.getKey())) { return (CoverageRate)entry.getValue(); } } return minimumCoverageRate; ... | 1,124,980 |
CoverageRate findMinimumCoverageRate(String classname) { Iterator i = minimumCoverageRates.entrySet().iterator(); while (i.hasNext()) { Map.Entry entry = (Map.Entry)i.next(); if (pm.matches(classname, (Pattern)entry.getKey())) { return (CoverageRate)entry.getValue(); } } return minimumCoverageRate; } | CoverageRate findMinimumCoverageRate(String classname) { Iterator i = minimumCoverageRates.entrySet().iterator(); while (i.hasNext()) { Map.Entry entry = (Map.Entry)i.next(); if (pm.matches(classname, (Pattern)entry.getKey())) { return (CoverageRate)entry.getValue(); } } return this.minimumCoverageRate... | 1,124,981 |
void setMinimumCoverageRate(String minimumCoverageRate) throws MalformedPatternException { StringTokenizer tokenizer = new StringTokenizer(minimumCoverageRate, ":"); minimumCoverageRates.put(pc.compile(tokenizer.nextToken()), new CoverageRate(inRangeAndDivideByOneHundred(tokenizer .nextToken()), inRange... | void setMinimumCoverageRate(String minimumCoverageRate) throws MalformedPatternException { StringTokenizer tokenizer = new StringTokenizer(minimumCoverageRate, ":"); this.minimumCoverageRates.put(pc.compile(tokenizer.nextToken()), new CoverageRate(inRangeAndDivideByOneHundred(tokenizer .nextToken()), in... | 1,124,982 |
final protected void execute(Template tmpl, WebContext c) { Writer out = null; boolean timing = Flags.PROFILE && c.isTiming(); try { if (timing) c.startTiming("Template.write", tmpl); FastWriter fw; try { HttpServletResponse resp= c.getResponse(); ... | final protected void execute(Template tmpl, WebContext c) { FastWriter fw = null; boolean timing = Flags.PROFILE && c.isTiming(); try { if (timing) c.startTiming("Template.write", tmpl); FastWriter fw; try { HttpServletResponse resp= c.getResponse(); ... | 1,124,983 |
final protected void execute(Template tmpl, WebContext c) { Writer out = null; boolean timing = Flags.PROFILE && c.isTiming(); try { if (timing) c.startTiming("Template.write", tmpl); FastWriter fw; try { HttpServletResponse resp= c.getResponse(); ... | final protected void execute(Template tmpl, WebContext c) { Writer out = null; boolean timing = Flags.PROFILE && c.isTiming(); try { if (timing) c.startTiming("Template.write", tmpl); try { HttpServletResponse resp= c.getResponse(); fw = Fast... | 1,124,984 |
final protected void execute(Template tmpl, WebContext c) { Writer out = null; boolean timing = Flags.PROFILE && c.isTiming(); try { if (timing) c.startTiming("Template.write", tmpl); FastWriter fw; try { HttpServletResponse resp= c.getResponse(); ... | final protected void execute(Template tmpl, WebContext c) { Writer out = null; boolean timing = Flags.PROFILE && c.isTiming(); try { if (timing) c.startTiming("Template.write", tmpl); FastWriter fw; try { HttpServletResponse resp= c.getResponse(); Locale locale = ... | 1,124,985 |
final protected void execute(Template tmpl, WebContext c) { Writer out = null; boolean timing = Flags.PROFILE && c.isTiming(); try { if (timing) c.startTiming("Template.write", tmpl); FastWriter fw; try { HttpServletResponse resp= c.getResponse(); ... | final protected void execute(Template tmpl, WebContext c) { Writer out = null; boolean timing = Flags.PROFILE && c.isTiming(); try { if (timing) c.startTiming("Template.write", tmpl); FastWriter fw; try { HttpServletResponse resp= c.getResponse(); ... | 1,124,986 |
final protected void execute(Template tmpl, WebContext c) { Writer out = null; boolean timing = Flags.PROFILE && c.isTiming(); try { if (timing) c.startTiming("Template.write", tmpl); FastWriter fw; try { HttpServletResponse resp= c.getResponse(); ... | final protected void execute(Template tmpl, WebContext c) { Writer out = null; boolean timing = Flags.PROFILE && c.isTiming(); try { if (timing) c.startTiming("Template.write", tmpl); FastWriter fw; try { HttpServletResponse resp= c.getResponse(); ... | 1,124,987 |
final protected void execute(Template tmpl, WebContext c) { Writer out = null; boolean timing = Flags.PROFILE && c.isTiming(); try { if (timing) c.startTiming("Template.write", tmpl); FastWriter fw; try { HttpServletResponse resp= c.getResponse(); ... | final protected void execute(Template tmpl, WebContext c) { Writer out = null; boolean timing = Flags.PROFILE && c.isTiming(); try { if (timing) c.startTiming("Template.write", tmpl); FastWriter fw; try { HttpServletResponse resp= c.getResponse(); ... | 1,124,988 |
private static void copyResourceFromJar(String resourceName, File directory) throws IOException { int n; byte[] buf = new byte[1024]; InputStream in = null; FileOutputStream out = null; directory.mkdirs(); try { in = CopyFiles.class.getResourceAsStream(resourceName); if (in == null) throw new IllegalAr... | private static void copyResourceFromJar(String resourceName, File directory) throws IOException { int n; byte[] buf = new byte[1024]; InputStream in = null; FileOutputStream out = null; directory.mkdirs(); try { in = CopyFiles.class.getResourceAsStream(resourceName); if (in == null) throw new IllegalAr... | 1,124,989 |
private static void copyResourceFromJar(String resourceName, File directory) throws IOException { int n; byte[] buf = new byte[1024]; InputStream in = null; FileOutputStream out = null; directory.mkdirs(); try { in = CopyFiles.class.getResourceAsStream(resourceName); if (in == null) throw new IllegalAr... | private static void copyResourceFromJar(String resourceName, File directory) throws IOException { int n; byte[] buf = new byte[1024]; InputStream in = null; FileOutputStream out = null; directory.mkdirs(); try { in = CopyFiles.class.getResourceAsStream(resourceName); if (in == null) throw new IllegalAr... | 1,124,990 |
public void init(Broker broker,Settings config) throws InitException { super.init(broker,config); this.broker = broker; log = broker.getLog("resource","DelegatingTemplateProvider"); String factoryClass = config.getSetting("TemplateLoaderFactory",""); log.info("DelegatingTemplatePr... | public void init(Broker broker,Settings config) throws InitException { super.init(broker,config); this.broker = broker; log = broker.getLog("resource","DelegatingTemplateProvider"); String factoryClass = config.getSetting("TemplateLoaderFactory",""); log.info("DelegatingTemplatePr... | 1,124,991 |
protected void createServiceForFile(String name, File file, ClassLoader classLoader, ApplicationContext parentContext) throws ServiceAlreadyExistsException, ServiceRegistrationException, BeansException, IOException { if (isSpringConfigFile(file)) { // make the current directory availabl... | protected void createServiceForFile(String name, File file, ClassLoader classLoader, ApplicationContext parentContext) throws ServiceAlreadyExistsException, ServiceRegistrationException, BeansException, IOException { if (isSpringConfigFile(file)) { // make the current directory availabl... | 1,124,992 |
public void write(FastWriter out, Context context) throws PropertyException, IOException { Object[] arr; try { if (list instanceof Macro) arr = (Object[]) ((Macro) list).evaluate(context); else arr = (Object[]) list; target.setValue(context, (Object) new Alternator(arr)); }... | public void write(FastWriter out, Context context) throws PropertyException, IOException { Object l = null; try { if (list instanceof Macro) arr = (Object[]) ((Macro) list).evaluate(context); else arr = (Object[]) list; target.setValue(context, (Object) new Alternator(arr)); ... | 1,124,994 |
public void write(FastWriter out, Context context) throws PropertyException, IOException { Object[] arr; try { if (list instanceof Macro) arr = (Object[]) ((Macro) list).evaluate(context); else arr = (Object[]) list; target.setValue(context, (Object) new Alternator(arr)); }... | public void write(FastWriter out, Context context) throws PropertyException, IOException { Object[] arr; try { if (list instanceof Macro) l = ((Macro) list).evaluate(context); else arr = (Object[]) list; target.setValue(context, (Object) new Alternator(arr)); } catch (Cl... | 1,124,995 |
public void write(FastWriter out, Context context) throws PropertyException, IOException { Object[] arr; try { if (list instanceof Macro) arr = (Object[]) ((Macro) list).evaluate(context); else arr = (Object[]) list; target.setValue(context, (Object) new Alternator(arr)); }... | public void write(FastWriter out, Context context) throws PropertyException, IOException { Object[] arr; try { if (list instanceof Macro) arr = (Object[]) ((Macro) list).evaluate(context); else l = list; Iterator itr = context.getBroker()._propertyOperators.getIterator(l); ta... | 1,124,996 |
public void write(FastWriter out, Context context) throws PropertyException, IOException { Object[] arr; try { if (list instanceof Macro) arr = (Object[]) ((Macro) list).evaluate(context); else arr = (Object[]) list; target.setValue(context, (Object) new Alternator(arr)); }... | public void write(FastWriter out, Context context) throws PropertyException, IOException { Object[] arr; try { if (list instanceof Macro) arr = (Object[]) ((Macro) list).evaluate(context); else arr = (Object[]) list; target.setValue(context, (Object) new Alternator(arr)); }... | 1,124,997 |
public Object evaluate(Context context) { Object o = list[index++]; if (index == list.length) index = 0; return o; } | public Object evaluate(Context context) { Object o = list[index++]; if (index == list.length) index = 0; return o; } | 1,124,998 |
final public ParseException generateParseException() { jj_expentries.removeAllElements(); boolean[] la1tokens = new boolean[35]; for (int i = 0; i < 35; i++) { la1tokens[i] = false; } if (jj_kind >= 0) { la1tokens[jj_kind] = true; jj_kind = -1; } for (int i = 0; i < 2; i++) { ... | final public ParseException generateParseException() { jj_expentries.removeAllElements(); boolean[] la1tokens = new boolean[35]; for (int i = 0; i < 35; i++) { la1tokens[i] = false; } if (jj_kind >= 0) { la1tokens[jj_kind] = true; jj_kind = -1; } for (int i = 0; i < 2; i++) { ... | 1,124,999 |
final public ParseException generateParseException() { jj_expentries.removeAllElements(); boolean[] la1tokens = new boolean[35]; for (int i = 0; i < 35; i++) { la1tokens[i] = false; } if (jj_kind >= 0) { la1tokens[jj_kind] = true; jj_kind = -1; } for (int i = 0; i < 2; i++) { ... | final public ParseException generateParseException() { jj_expentries.removeAllElements(); boolean[] la1tokens = new boolean[35]; for (int i = 0; i < 37; i++) { la1tokens[i] = false; } if (jj_kind >= 0) { la1tokens[jj_kind] = true; jj_kind = -1; } for (int i = 0; i < 2; i++) { ... | 1,125,000 |
final public WikiPage parse(WikiPageBuilder builder) throws ParseException { Token t; label_1: while (true) { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case QUOTED_BLOCK: case BOLD: case UNDERLINE: case ITALIC: case LT: case GT: c... | final public WikiPage parse(WikiPageBuilder builder) throws ParseException { Token t; builder.begin(); label_1: while (true) { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case QUOTED_BLOCK: case BOLD: case UNDERLINE: case ITALIC: case LT: ... | 1,125,001 |
final void MoreLexicalActions() { jjimageLen += (lengthOfMatch = jjmatchedPos + 1); switch (jjmatchedKind) { case 7: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen))); else image.append(input_stream.GetSuffix(jjimageLen)); jjimageLen = 0; break; defa... | private final void MoreLexicalActions() { jjimageLen += (lengthOfMatch = jjmatchedPos + 1); switch (jjmatchedKind) { case 7: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen))); else image.append(input_stream.GetSuffix(jjimageLen)); jjimageLen = 0; break... | 1,125,003 |
final void MoreLexicalActions() { jjimageLen += (lengthOfMatch = jjmatchedPos + 1); switch (jjmatchedKind) { case 7: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen))); else image.append(input_stream.GetSuffix(jjimageLen)); jjimageLen = 0; break; defa... | final void MoreLexicalActions() { jjimageLen += jjmatchedPos + 1; switch (jjmatchedKind) { case 7: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen))); else image.append(input_stream.GetSuffix(jjimageLen)); jjimageLen = 0; break; default: break; } ... | 1,125,004 |
final void MoreLexicalActions() { jjimageLen += (lengthOfMatch = jjmatchedPos + 1); switch (jjmatchedKind) { case 7: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen))); else image.append(input_stream.GetSuffix(jjimageLen)); jjimageLen = 0; break; defa... | final void MoreLexicalActions() { jjimageLen += (lengthOfMatch = jjmatchedPos + 1); switch (jjmatchedKind) { case 7: if (image == null) image = new StringBuffer(new String(input_stream.getSuffix(jjimageLen))); else image.append(input_stream.GetSuffix(jjimageLen)); jjimageLen = 0; break; defa... | 1,125,005 |
final void MoreLexicalActions() { jjimageLen += (lengthOfMatch = jjmatchedPos + 1); switch (jjmatchedKind) { case 7: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen))); else image.append(input_stream.GetSuffix(jjimageLen)); jjimageLen = 0; break; defa... | final void MoreLexicalActions() { jjimageLen += (lengthOfMatch = jjmatchedPos + 1); switch (jjmatchedKind) { case 7: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen))); else image.append(input_stream.getSuffix(jjimageLen)); jjimageLen = 0; break; defa... | 1,125,006 |
final void SkipLexicalActions() { switch (jjmatchedKind) { case 8: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)))); else image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); ... | private final void SkipLexicalActions() { switch (jjmatchedKind) { case 8: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)))); else image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos ... | 1,125,007 |
final void SkipLexicalActions() { switch (jjmatchedKind) { case 8: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)))); else image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); ... | final void SkipLexicalActions() { switch (jjmatchedKind) { case 8: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)))); else image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); ... | 1,125,008 |
final void SkipLexicalActions() { switch (jjmatchedKind) { case 8: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)))); else image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); ... | final void SkipLexicalActions() { switch (jjmatchedKind) { case 8: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)))); else image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); ... | 1,125,009 |
private final Token jjFillToken() { Token t = Token.newToken(jjmatchedKind); t.kind = jjmatchedKind; if (jjmatchedPos < 0) { t.image = ""; t.beginLine = t.endLine = input_stream.getBeginLine(); t.beginColumn = t.endColumn = input_stream.getBeginColumn(); } else { String im = jjstrLiteralImages[jjmatched... | private final Token jjFillToken() { Token t = Token.newToken(jjmatchedKind); t.kind = jjmatchedKind; if (jjmatchedPos < 0) { t.image = ""; t.beginLine = t.endLine = input_stream.getBeginLine(); t.beginColumn = t.endColumn = input_stream.getBeginColumn(); } else { String im = jjstrLiteralImages[jjmatched... | 1,125,010 |
private final int jjMoveNfa_2(int startState, int curPos) { int startsAt = 0; jjnewStateCnt = 3; int i = 1; jjstateSet[0] = startState; int kind = 0x7fffffff; for (;;) { if (++jjround == 0x7fffffff) ReInitRounds(); if (curChar < 64) { long l = 1L << curChar; MatchLoop: do { switch (jjstate... | private final int jjMoveNfa_2(int startState, int curPos) { int startsAt = 0; jjnewStateCnt = 3; int i = 1; jjstateSet[0] = startState; int kind = 0x7fffffff; for (;;) { if (++jjround == 0x7fffffff) ReInitRounds(); if (curChar < 64) { long l = 1L << curChar; MatchLoop: do { switch (jjstate... | 1,125,011 |
public void encodeBegin(FacesContext context) throws IOException { if(clearOnInit) { WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "clear"); }// WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "updateLocale");// updateEditButtons(); super.encodeBegin(context); IWContext iwc = IWContext.getIWContext(context); String resourcePath ... | public void encodeBegin(FacesContext context) throws IOException { if(clearOnInit) { ArticleItemBean bean = getArticleItemBean(); if(bean!=null){ bean.clear(); } }// WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "updateLocale");// updateEditButtons(); super.encodeBegin(context); IWContext iwc = IWContext.getIWContext(... | 1,125,012 |
public void encodeBegin(FacesContext context) throws IOException { if(clearOnInit) { WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "clear"); }// WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "updateLocale");// updateEditButtons(); super.encodeBegin(context); IWContext iwc = IWContext.getIWContext(context); String resourcePath ... | public void encodeBegin(FacesContext context) throws IOException { if(clearOnInit) { WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "clear"); }// WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "updateLocale");// updateEditButtons(); super.encodeBegin(context); IWContext iwc = IWContext.getIWContext(context); String resourcePath ... | 1,125,013 |
public void encodeBegin(FacesContext context) throws IOException { if(clearOnInit) { WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "clear"); }// WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "updateLocale");// updateEditButtons(); super.encodeBegin(context); IWContext iwc = IWContext.getIWContext(context); String resourcePath ... | public void encodeBegin(FacesContext context) throws IOException { if(clearOnInit) { WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "clear"); }// WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "updateLocale");// updateEditButtons(); super.encodeBegin(context); IWContext iwc = IWContext.getIWContext(context); String resourcePath ... | 1,125,014 |
public UIComponent getEditContainer() { IWContext iwc = IWContext.getInstance(); WFResourceUtil localizer = WFResourceUtil.getResourceUtilArticle(); String ref = ARTICLE_ITEM_BEAN_ID + ".";// String bref = WFPage.CONTENT_BUNDLE + "."; WFContainer mainContainer = new WFContainer(); mainContainer.setId(ARTICLE_E... | public UIComponent getEditContainer() { IWContext iwc = IWContext.getInstance(); WFResourceUtil localizer = WFResourceUtil.getResourceUtilArticle(); String ref = ARTICLE_ITEM_BEAN_ID + ".";// String bref = WFPage.CONTENT_BUNDLE + "."; WFContainer mainContainer = new WFContainer(); mainContainer.setId(ARTICLE_E... | 1,125,016 |
public UIComponent getEditContainer() { IWContext iwc = IWContext.getInstance(); WFResourceUtil localizer = WFResourceUtil.getResourceUtilArticle(); String ref = ARTICLE_ITEM_BEAN_ID + ".";// String bref = WFPage.CONTENT_BUNDLE + "."; WFContainer mainContainer = new WFContainer(); mainContainer.setId(ARTICLE_E... | public UIComponent getEditContainer() { IWContext iwc = IWContext.getInstance(); WFResourceUtil localizer = WFResourceUtil.getResourceUtilArticle(); String ref = ARTICLE_ITEM_BEAN_ID + ".";// String bref = WFPage.CONTENT_BUNDLE + "."; WFContainer mainContainer = new WFContainer(); mainContainer.setId(ARTICLE_E... | 1,125,017 |
public UIComponent getEditContainer() { IWContext iwc = IWContext.getInstance(); WFResourceUtil localizer = WFResourceUtil.getResourceUtilArticle(); String ref = ARTICLE_ITEM_BEAN_ID + ".";// String bref = WFPage.CONTENT_BUNDLE + "."; WFContainer mainContainer = new WFContainer(); mainContainer.setId(ARTICLE_E... | public UIComponent getEditContainer() { IWContext iwc = IWContext.getInstance(); WFResourceUtil localizer = WFResourceUtil.getResourceUtilArticle(); String ref = ARTICLE_ITEM_BEAN_ID + ".";// String bref = WFPage.CONTENT_BUNDLE + "."; WFContainer mainContainer = new WFContainer(); mainContainer.setId(ARTICLE_E... | 1,125,018 |
public void processAction(ActionEvent event) { String id = event.getComponent().getId(); EditArticleView ab = (EditArticleView) event.getComponent().getParent().getParent().getParent().findComponent(EDIT_ARTICLE_BLOCK_ID); if (id.equals(SAVE_ID)) { ab.storeArticle();// String resourcePath = (String) WFUtil.invo... | public void processAction(ActionEvent event) { String id = event.getComponent().getId(); UIComponent rootParent = rootParent = event.getComponent().getParent().getParent().getParent(); EditArticleView ab = (EditArticleView) rootParent.findComponent(EDIT_ARTICLE_BLOCK_ID); if (id.equals(SAVE_ID)) { ab.storeArticl... | 1,125,019 |
public void processAction(ActionEvent event) { String id = event.getComponent().getId(); EditArticleView ab = (EditArticleView) event.getComponent().getParent().getParent().getParent().findComponent(EDIT_ARTICLE_BLOCK_ID); if (id.equals(SAVE_ID)) { ab.storeArticle();// String resourcePath = (String) WFUtil.invo... | public void processAction(ActionEvent event) { String id = event.getComponent().getId(); EditArticleView ab = (EditArticleView) event.getComponent().getParent().getParent().getParent().findComponent(EDIT_ARTICLE_BLOCK_ID); if (id.equals(SAVE_ID)) { ab.storeArticle();// String resourcePath = (String) WFUtil.invo... | 1,125,020 |
public void processAction(ActionEvent event) { String id = event.getComponent().getId(); EditArticleView ab = (EditArticleView) event.getComponent().getParent().getParent().getParent().findComponent(EDIT_ARTICLE_BLOCK_ID); if (id.equals(SAVE_ID)) { ab.storeArticle();// String resourcePath = (String) WFUtil.invo... | public void processAction(ActionEvent event) { String id = event.getComponent().getId(); EditArticleView ab = (EditArticleView) event.getComponent().getParent().getParent().getParent().findComponent(EDIT_ARTICLE_BLOCK_ID); if (id.equals(SAVE_ID)) { ab.storeArticle();// String resourcePath = (String) WFUtil.invo... | 1,125,021 |
public void storeArticle() { String bref = WFPage.CONTENT_BUNDLE + "."; boolean storeOk = ((Boolean) WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "storeArticle")).booleanValue(); if (!storeOk) { List errorKeys = (List) WFUtil.getValue(ARTICLE_ITEM_BEAN_ID, "errorKeys"); if (errorKeys != null) { for (Iterator iter = e... | public void storeArticle() { String bref = WFPage.CONTENT_BUNDLE + "."; boolean storeOk = getArticleItemBean().storeArticle().booleanValue(); if (!storeOk) { List errorKeys = (List) WFUtil.getValue(ARTICLE_ITEM_BEAN_ID, "errorKeys"); if (errorKeys != null) { for (Iterator iter = errorKeys.iterator(); iter.ha... | 1,125,023 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.