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
* Rótargrænmeti | |
* Sítróna | |
* Laukur | |
* Vorlaukur | |
* Hvítlaukur | |
* Paprika | |
* Kartöflur | |
* Egg | |
* Mjólk | |
* Rjómi |
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
private static NSArray<Integer> jobLineIDsWithOrphans( EOEditingContext ec, String companyNumber, Integer customerID ) { | |
NSMutableArray<EOQualifier> a = new NSMutableArray<>(); | |
if( companyNumber != null ) { | |
a.addObject( JoblineOrphan.COMPANY_NUMBER.eq( companyNumber ) ); | |
} | |
if( customerID != null ) { | |
a.addObject( JoblineOrphan.CUSTOMER_ID.eq( customerID ) ); | |
} |
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 sam; | |
import java.util.List; | |
import java.util.concurrent.TimeUnit; | |
import java.util.stream.Collectors; | |
import com.webobjects.appserver.WOActionResults; | |
import com.webobjects.appserver.WORequest; | |
import com.webobjects.appserver.WOResponse; | |
import com.webobjects.eocontrol.EOEditingContext; |
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
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>ERPrototypes</title> | |
<style type="text/css"> | |
body, table, tr, td, th { | |
font-family: Helvetica, sans-serif; | |
font-size: 11px; | |
} |
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
,,Niðaróss-gosdrykkjafabrikku - útibú“. Bör Börsson tók límonað | |
flöskuna aftur í hönd sér og hélt áfram upp í gegnum skóginn. | |
Húh! Hvað hann kveið fyrir. Hann stóð kyrr hvað eftir annað og ætl- | |
aði að snúa við. En: vogun vinnur og vogun tapar! Hann var þó fulltíða | |
maður - fulltíða kaupmaður þar á ofan. Væri þrautin nú þung og hörð, | |
þá gat þetta orðið þeim mun betra síðar - því hún var víst forrík - | |
hún var miljónessa. - Og að hafa svona fínan og stæðilegan kvenmann | |
fyrir innan búðarborðið! Hún var fögur sjón að sjá - við hana átti | |
þetta: Hin fegursta rósin er fundin - |
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
null | |
org.objectstyle.wolips.wizards.WizardsPluginResources | |
Error | |
Sun Apr 26 16:47:56 GMT 2015 | |
Internal Error | |
java.lang.Exception: The specified class for ResourceManager (org.apache.velocity.runtime.resource.ResourceManagerImpl) does not implement org.apache.velocity.runtime.resource.ResourceManager; Velocity is not initialized correctly. | |
at org.apache.velocity.runtime.RuntimeInstance.initializeResourceManager(RuntimeInstance.java:589) | |
at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:241) | |
at org.apache.velocity.app.VelocityEngine.init(VelocityEngine.java:116) |
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 strimillinn.core; | |
import java.util.List; | |
import org.apache.cayenne.DataObject; | |
import org.apache.cayenne.DataRow; | |
import org.apache.cayenne.ObjectContext; | |
import org.apache.cayenne.exp.Property; | |
import org.apache.cayenne.map.ObjEntity; | |
import org.apache.cayenne.query.SQLTemplate; |
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 strimillinn.core.model.auto; | |
import java.beans.IntrospectionException; | |
import java.beans.PropertyDescriptor; | |
import java.beans.SimpleBeanInfo; | |
public class _ProductBeanInfo extends SimpleBeanInfo { | |
@Override | |
public PropertyDescriptor[] getPropertyDescriptors() { |
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
/** | |
* @return The number of rows matching the given expression. | |
*/ | |
public static long count( ObjectContext oc, Class<? extends DataObject> entityClass, Expression expression ) { | |
StringBuilder b = new StringBuilder(); | |
b.append( "SELECT count(a) " ); | |
b.append( " FROM " ); | |
b.append( oc.getEntityResolver().getObjEntity( entityClass ).getName() ); | |
b.append( " a" ); |
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
/** | |
* @return The number of rows matching the given expression. | |
*/ | |
public static long count( ObjectContext oc, Class<? extends DataObject> entityClass, Expression expression ) { | |
StringBuilder b = new StringBuilder(); | |
b.append( "SELECT count(a) " ); | |
b.append( " FROM " ); | |
b.append( oc.getEntityResolver().getObjEntity( entityClass ).getName() ); | |
b.append( " a" ); |