Tabnine Logo
Project$Builder.withNumber
Code IndexAdd Tabnine to your IDE (free)

How to use
withNumber
method
in
it.tidalwave.accounting.model.Project$Builder

Best Java code snippets using it.tidalwave.accounting.model.Project$Builder.withNumber (Showing top 4 results out of 315)

origin: it.tidalwave.accounting/it-tidalwave-accounting-marshalling-xml

 @Nonnull
 public Project.Builder toBuilder (final @Nonnull Accounting accounting)
  {
   try 
    {
     final Customer customer = accounting.getCustomerRegistry().findCustomers().withId(customerXml.getId()).result();
     return new Project.Builder().withId(id)
                   .withCustomer(customer) 
                   .withName(name)
                   .withNumber(number)
                   .withDescription(description)
                   .withNotes(notes)
                   .withStatus(status)
                   .withHourlyRate(hourlyRate)
                   .withBudget(budget)
                   .withStartDate(startDate)
                   .withEndDate(endDate)
                   .withEvents(JobEventXml.toJobEvents(jobEventsXml));
    } 
   catch (NotFoundException e) 
    {
     throw new RuntimeException(e);
    }
  }
}
origin: it.tidalwave.accounting/it-tidalwave-accounting-importer-ibiz

.withEndDate(projectConfig.getDate("projectDueDate"))
.withNotes(projectConfig.getString("projectNotes"))
.withNumber(projectConfig.getString("projectNumber"))
.withStatus(status.getMappedStatus())
.withHourlyRate(getHourlyRate(projectConfig, jobEvents))
origin: it.tidalwave.accounting/it-tidalwave-accounting-model-impl-inmemory

.withEndDate(parseDate("2014-02-12"))
.withNotes("Notes for project 1")
.withNumber("1")
.withHourlyRate(new Money(43, "EUR"))
.create();
origin: it.tidalwave.accounting/it-tidalwave-accounting-model

.withStartDate(project1StartDate)
.withEndDate(project1EndDate)
.withNumber("PRJ ACME-1")
.withEvents(je1)
.withHourlyRate(rate1)
.withStartDate(project2StartDate)
.withEndDate(project2EndDate)
.withNumber("PRJ ACME-2")
.withEvents(je2)
.withHourlyRate(rate2)
.withStartDate(project3StartDate)
.withEndDate(project3EndDate)
.withNumber("PRJ ACME-3")
.withHourlyRate(rate3)
.withEvents(je3)
.withStartDate(project4StartDate)
.withEndDate(project4EndDate)
.withNumber("PRJ ACME-4")
.withHourlyRate(rate4)
.withEvents(je4)
it.tidalwave.accounting.modelProject$BuilderwithNumber

Popular methods of Project$Builder

  • create
  • withBudget
  • withCustomer
  • withEndDate
  • withHourlyRate
  • withId
  • withName
  • withStartDate
  • withDescription
  • withEvents
  • withNotes
  • <init>
  • withNotes,
  • <init>,
  • withStatus,
  • getBudget,
  • getCustomer,
  • getDescription,
  • getEndDate,
  • getHourlyRate,
  • getId

Popular in Java

  • Parsing JSON documents to java classes using gson
  • onRequestPermissionsResult (Fragment)
  • requestLocationUpdates (LocationManager)
  • getSupportFragmentManager (FragmentActivity)
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • Top Sublime Text plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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