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

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

Best Java code snippets using it.tidalwave.accounting.model.Project$Builder.withName (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

.withBudget(projectConfig.getMoney("projectEstimate"))
.withCustomer(customer)
.withName(projectConfig.getString("projectName"))
origin: it.tidalwave.accounting/it-tidalwave-accounting-model-impl-inmemory

.withBudget(new Money(10500, "EUR"))
.withCustomer(c1)
.withName("Project 1")
.withDescription("description of project 1")
.withStartDate(parseDate("2014-01-03"))
origin: it.tidalwave.accounting/it-tidalwave-accounting-model

.withCustomer(acmeConsulting)
.withDescription("Acme Consulting Project 1")
.withName("Acme Consulting Project 1")
.withStartDate(project1StartDate)
.withEndDate(project1EndDate)
.withCustomer(acmeConsulting)
.withDescription("Acme Consulting Project 2")
.withName("Acme Consulting Project 2")
.withStartDate(project2StartDate)
.withEndDate(project2EndDate)
.withCustomer(acmeFinancing)
.withDescription("Acme Financing Project 1")
.withName("Acme Financing Project 1")
.withStartDate(project3StartDate)
.withEndDate(project3EndDate)
.withCustomer(acmeFinancing)
.withDescription("Acme Financing Project 2")
.withName("Acme Financing Project 2")
.withStartDate(project4StartDate)
.withEndDate(project4EndDate)
it.tidalwave.accounting.modelProject$BuilderwithName

Popular methods of Project$Builder

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

Popular in Java

  • Reactive rest calls using spring rest template
  • setContentView (Activity)
  • scheduleAtFixedRate (Timer)
  • getApplicationContext (Context)
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • Best plugins for Eclipse
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