congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
SubaccountLine.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.beigesoft.accounting.persistable.SubaccountLine
constructor

Best Java code snippets using org.beigesoft.accounting.persistable.SubaccountLine.<init> (Showing top 4 results out of 315)

origin: org.beigesoft/beige-accounting

/**
 * <p>Create entity with its itsOwner e.g. invoice line
 * for invoice.</p>
 * @param pAddParam additional param
 * @param pEntityItsOwner itsOwner
 * @return entity instance
 * @throws Exception - an exception
 **/
@Override
public final SubaccountLine createEntityWithOwner(
 final Map<String, Object> pAddParam,
  final Account pEntityItsOwner) throws Exception {
 SubaccountLine entity = new SubaccountLine();
 entity.setIsNew(true);
 entity.setItsOwner(pEntityItsOwner);
 addAccSettingsIntoAttrs(pAddParam);
 addTypeCodeIntoAttrs(pAddParam);
 return entity;
}
origin: org.beigesoft/beige-accounting

/**
 * <p>Create entity.</p>
 * @param pAddParam additional param
 * @return entity instance
 * @throws Exception - an exception
 **/
@Override
public final SubaccountLine createEntity(
 final Map<String, Object> pAddParam) throws Exception {
 SubaccountLine entity = new SubaccountLine();
 entity.setIsNew(true);
 Account itsOwner = new Account();
 entity.setItsOwner(itsOwner);
 addTypeCodeIntoAttrs(pAddParam);
 addAccSettingsIntoAttrs(pAddParam);
 return entity;
}
origin: org.beigesoft/beigesoft-accounting-weboio-jar

 accountsInChart.add(accInChart);
} else {
 SubaccountLine sal = new SubaccountLine();
 sal.setItsOwner(acc);
 List<SubaccountLine> subaccounts = srvOrm
origin: org.beigesoft/beige-accounting

/**
 * <p>Create entity with its itsOwner e.g. invoice line
 * for invoice.</p>
 * @param pAddParam additional param
 * @param pIdEntityItsOwner entity itsOwner ID
 * @return entity instance
 * @throws Exception - an exception
 **/
@Override
public final SubaccountLine createEntityWithOwnerById(
 final Map<String, Object> pAddParam,
  final Object pIdOwner) throws Exception {
 SubaccountLine entity = new SubaccountLine();
 entity.setIsNew(true);
 Account itsOwner = getSrvOrm().retrieveEntityById(
  Account.class, pIdOwner);
 entity.setSubaccType(itsOwner.getSubaccType());
 entity.setItsOwner(itsOwner);
 addAccSettingsIntoAttrs(pAddParam);
 addTypeCodeIntoAttrs(pAddParam);
 return entity;
}
org.beigesoft.accounting.persistableSubaccountLine<init>

Popular methods of SubaccountLine

  • setItsOwner
    Setter for itsOwner.
  • getItsOwner
    Getter for itsOwner.
  • getSubaccName
    Getter for subaccName.
  • setSubaccType
    Setter for subaccType.
  • getIsNew
  • getItsId
  • getSubaccId
    Getter for subaccId.
  • getSubaccType
    Getter for subaccType.
  • setIsNew

Popular in Java

  • Running tasks concurrently on multiple threads
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • addToBackStack (FragmentTransaction)
  • onRequestPermissionsResult (Fragment)
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • ImageIO (javax.imageio)
  • Top 17 PhpStorm Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now