SlideShare a Scribd company logo
1 of 62
CommissionCalculation/build/classes/.netbeans_automatic_buil
d
CommissionCalculation/build/classes/.netbeans_update_resourc
es
CommissionCalculation/build/classes/commissioncalculation/Co
mmissionCalculation.rs
CommissionCalculation/build/classes/commissioncalculation/Sa
lesPerson.rs
CommissionCalculation/build/classes/CommissionCalculation.cl
asspublicsynchronizedclass CommissionCalculation {
public void CommissionCalculation();
publicstatic void main(String[]);
}
CommissionCalculation/build/classes/SalesPerson.classpublicsy
nchronizedclass SalesPerson {
privatefinal double fixedSalary;
privatefinal double commissionRate;
privatefinal double salesTarget;
privatefinal double accelerationfactor;
private String name;
private double totalComm;
private double annualSales;
public SalesPerson saleperson;
public double getTotalComm();
public void setTotalComm(double);
public SalesPerson getSaleperson();
public void setSaleperson(SalesPerson);
public String getName();
public void setName(String);
public void SalesPerson();
public void SalesPerson(String, double, double);
public void SalesPerson(double);
public double getAnnualSales();
public void setAnnualSales(double);
public double getCommission();
public double getAnnualCompensation();
}
CommissionCalculation/build.xml
Builds, tests, and runs the project CommissionCalculation.
CommissionCalculation/lib/CopyLibs/org-netbeans-modules-
java-j2seproject-copylibstask.jar
META-INF/MANIFEST.MF
Manifest-Version: 1.0
Ant-Version: Apache Ant 1.9.2
Created-By: 1.7.0_25-b15 (Oracle Corporation)
NetBeans-Own-Library: true
org/netbeans/modules/java/j2seproject/copylibstask/Bundle.prop
erties
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR
THIS HEADER.
#
# Copyright 1997-2010 Oracle and/or its affiliates. All rights
reserved.
#
# Oracle and Java are registered trademarks of Oracle and/or its
affiliates.
# Other names may be trademarks of their respective owners.
#
# The contents of this file are subject to the terms of either the
GNU
# General Public License Version 2 only ("GPL") or the
Common
# Development and Distribution License("CDDL") (collectively,
the
# "License"). You may not use this file except in compliance
with the
# License. You can obtain a copy of the License at
# http://www.netbeans.org/cddl-gplv2.html
# or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
# specific language governing permissions and limitations under
the
# License. When distributing the software, include this License
Header
# Notice in each file and include the License file at
# nbbuild/licenses/CDDL-GPL-2-CP. Oracle designates this
# particular file as subject to the "Classpath" exception as
provided
# by Oracle in the GPL Version 2 section of the License file
that
# accompanied this code. If applicable, add the following below
the
# License Header, with the fields enclosed by brackets []
replaced by
# your own identifying information:
# "Portions Copyrighted [year] [name of copyright owner]"
#
# Contributor(s):
#
# The Original Software is NetBeans. The Initial Developer of
the Original
# Software is Sun Microsystems, Inc. Portions Copyright 1997-
2006 Sun
# Microsystems, Inc. All Rights Reserved.
#
# If you wish your version of this file to be governed by only
the CDDL
# or only the GPL Version 2, indicate your decision by adding
# "[Contributor] elects to include this software in this
distribution
# under the [CDDL or GPL Version 2] license." If you do not
indicate a
# single choice of license, a recipient has the option to
distribute
# your version of this file under either the CDDL, the GPL
Version 2 or
# to extend the choice of license to its licensees as provided
above.
# However, if you add GPL Version 2 code and therefore,
elected the GPL
# Version 2 license, then the option applies only if the new code
is
# made subject to such option by the copyright holder.
TXT_README_FILE_NAME=README.TXT
TXT_README_FILE_CONTENT======================
===n
BUILD OUTPUT DESCRIPTIONn
========================n
n
When you build an Java application project that has a main
class, the IDEn
automatically copies all of the JARn
files on the project's classpath to your project's dist/lib folder.
The IDEn
also adds each of the JAR files to the Class-Path element in the
applicationn
JAR file's manifest file (MANIFEST.MF).n
n
To run the project from the command line, go to the dist folder
andn
type the following:n
n
java -jar '"{0}'" n
n
To distribute this project, zip up the dist folder (including the
lib folder)n
and distribute the ZIP file.n
n
Notes:n
n
* If two JAR files on the project classpath have the same name,
only the firstn
JAR file is copied to the lib folder.n
* Only JAR files are copied to the lib folder.n
If the classpath contains other types of files or folders, these
files (folders)n
are not copied.n
* If a library on the project's classpath also has a Class-Path
elementn
specified in the manifest,the content of the Class-Path element
has to be onn
the project's runtime path.n
* To set a main class in a standard Java project, right-click the
project noden
in the Projects window and choose Properties. Then click Run
and enter then
class name in the Main Class field. Alternatively, you can
manually type then
class name in the manifest Main-Class element.
org/netbeans/modules/java/j2seproject/copylibstask/CopyFiles.c
lasspackage org.netbeans.modules.java.j2seproject.copylibstask;
publicsynchronizedclass CopyFiles extends
org.apache.tools.ant.Task {
private java.io.File todir;
private java.io.File iftldtodir;
private String files;
private String manifestproperty;
public void CopyFiles();
public void execute() throws
org.apache.tools.ant.BuildException;
private boolean containsTLD(java.io.File);
public String getFiles();
public void setFiles(String);
public java.io.File getToDir();
public void setToDir(java.io.File);
public java.io.File getIfTLDToDir();
public void setIfTLDToDir(java.io.File);
public String getManifestProperty();
public void setManifestProperty(String);
static void <clinit>();
}
org/netbeans/modules/java/j2seproject/copylibstask/CopyLibs.cl
asspackage org.netbeans.modules.java.j2seproject.copylibstask;
publicsynchronizedclass CopyLibs extends
org.apache.tools.ant.taskdefs.Jar {
privatestaticfinal String LIB = lib;
privatestaticfinal String ATTR_CLASS_PATH = Class-Path;
privatestaticfinal String MANIFEST = META-
INF/MANIFEST.MF;
privatestaticfinal String INDEX = META-INF/INDEX.LIST;
privatestaticfinal String UTF_8 = UTF-8;
privatestaticfinal String UTF8 = UTF8;
org.apache.tools.ant.types.Path runtimePath;
org.apache.tools.ant.types.Path excludeFromCopy;
private boolean rebase;
public void CopyLibs();
public void
setRuntimeClassPath(org.apache.tools.ant.types.Path);
public org.apache.tools.ant.types.Path
getRuntimeClassPath();
public void
setExcludeFromCopy(org.apache.tools.ant.types.Path);
public org.apache.tools.ant.types.Path
getExcludeFromCopy();
public boolean isRebase();
public void setRebase(boolean);
public void setEncoding(String);
public void execute() throws
org.apache.tools.ant.BuildException;
private boolean rebase(java.io.File, java.io.File);
privatestatic boolean
isSigned(org.apache.tools.ant.taskdefs.Manifest);
privatestatic void copy(java.io.InputStream,
java.io.OutputStream) throws java.io.IOException;
privatestatic boolean isUTF8(String);
static void <clinit>();
}
org/netbeans/modules/java/j2seproject/copylibstask/antlib.xml
CommissionCalculation/lib/nblibraries.properties
libs.CopyLibs.classpath=
${base}/CopyLibs/org-netbeans-modules-java-j2seproject-
copylibstask.jar
libs.CopyLibs.displayName=CopyLibs Task
libs.CopyLibs.prop-version=2.0
CommissionCalculation/manifest.mf
Manifest-Version: 1.0
X-COMMENT: Main-Class will be added automatically by build
CommissionCalculation/nbproject/build-impl.xml
Must set src.dir
Must set test.src.dir
Must set build.dir
Must set dist.dir
Must set build.classes.dir
Must set dist.javadoc.dir
Must set build.test.classes.dir
Must set build.test.results.dir
Must set build.classes.excludes
Must set dist.jar
Must set javac.includes
No tests executed.
Must set JVM to use for profiling in profiler.info.jvm
Must set profiler agent JVM arguments in
profiler.info.jvmargs.agent
Must select some files in the IDE or set javac.includes
To run this application from the command line without
Ant, try:
java -jar "${dist.jar.resolved}"
Must select one file in the IDE or set run.class
Must select one file in the IDE or set run.class
Must select one file in the IDE or set debug.class
Must select one file in the IDE or set debug.class
Must set fix.includes
This target only works when run from inside the NetBeans
IDE.
Must select one file in the IDE or set profile.class
This target only works when run from inside the NetBeans
IDE.
This target only works when run from inside the NetBeans
IDE.
This target only works when run from inside the NetBeans
IDE.
Must select one file in the IDE or set run.class
Must select some files in the IDE or set test.includes
Must select one file in the IDE or set run.class
Must select one file in the IDE or set applet.url
Must select some files in the IDE or set javac.includes
Some tests failed; see details above.
Must select some files in the IDE or set test.includes
Some tests failed; see details above.
Must select some files in the IDE or set test.class
Must select some method in the IDE or set test.method
Some tests failed; see details above.
Must select one file in the IDE or set test.class
Must select one file in the IDE or set test.class
Must select some method in the IDE or set test.method
Must select one file in the IDE or set applet.url
Must select one file in the IDE or set applet.url
CommissionCalculation/nbproject/genfiles.properties
build.xml.data.CRC32=8683aaba
build.xml.script.CRC32=fbd9ff97
[email protected]
# This file is used by a NetBeans-based IDE to track changes in
generated files such as build-impl.xml.
# Do not edit this file. You may delete it but then the IDE will
never regenerate such files for you.
nbproject/build-impl.xml.data.CRC32=8683aaba
nbproject/build-impl.xml.script.CRC32=92729e04
nbproject/[email protected]
CommissionCalculation/nbproject/private/private.properties
compile.on.save=true
user.properties.file=C:UsersaakashAppDataRoamingNet
Beans8.0build.properties
CommissionCalculation/nbproject/private/private.xml
file:/C:/Users/aakash/Documents/NetBeansProjects/Commission
Calculation/src/CommissionCalculation.java
file:/C:/Users/aakash/Documents/NetBeansProjects/Commission
Calculation/src/SalesPerson.java
CommissionCalculation/nbproject/project.properties
annotation.processing.enabled=true
annotation.processing.enabled.in.editor=false
annotation.processing.processor.options=
annotation.processing.processors.list=
annotation.processing.run.all.processors=true
annotation.processing.source.output=${build.generated.sources.
dir}/ap-source-output
build.classes.dir=${build.dir}/classes
build.classes.excludes=**/*.java,**/*.form
# This directory is removed when the project is cleaned:
build.dir=build
build.generated.dir=${build.dir}/generated
build.generated.sources.dir=${build.dir}/generated-sources
# Only compile against the classpath explicitly listed here:
build.sysclasspath=ignore
build.test.classes.dir=${build.dir}/test/classes
build.test.results.dir=${build.dir}/test/results
# Uncomment to specify the preferred debugger connection
transport:
#debug.transport=dt_socket
debug.classpath=
${run.classpath}
debug.test.classpath=
${run.test.classpath}
# Files in build.classes.dir which should be excluded from
distribution jar
dist.archive.excludes=
# This directory is removed when the project is cleaned:
dist.dir=dist
dist.jar=${dist.dir}/CommissionCalculation.jar
dist.javadoc.dir=${dist.dir}/javadoc
excludes=
includes=**
jar.compress=false
javac.classpath=
# Space-separated list of extra javac options
javac.compilerargs=
javac.deprecation=false
javac.processorpath=
${javac.classpath}
javac.source=1.8
javac.target=1.8
javac.test.classpath=
${javac.classpath}:
${build.classes.dir}
javac.test.processorpath=
${javac.test.classpath}
javadoc.additionalparam=
javadoc.author=false
javadoc.encoding=${source.encoding}
javadoc.noindex=false
javadoc.nonavbar=false
javadoc.notree=false
javadoc.private=false
javadoc.splitindex=true
javadoc.use=true
javadoc.version=false
javadoc.windowtitle=
main.class=commissioncalculation.CommissionCalculation
manifest.file=manifest.mf
meta.inf.dir=${src.dir}/META-INF
mkdist.disabled=false
platform.active=default_platform
run.classpath=
${javac.classpath}:
${build.classes.dir}
# Space-separated list of JVM arguments used when running the
project.
# You may also define separate properties like run-sys-
prop.name=value instead of -Dname=value.
# To set system properties for unit tests define test-sys-
prop.name=value:
run.jvmargs=
run.test.classpath=
${javac.test.classpath}:
${build.test.classes.dir}
source.encoding=UTF-8
src.dir=src
test.src.dir=test
CommissionCalculation/nbproject/project.xml
org.netbeans.modules.java.j2seproject
CommissionCalculation
.libnblibraries.properties
CommissionCalculation/src/CommissionCalculation.javaCommi
ssionCalculation/src/CommissionCalculation.javaimport java.te
xt.NumberFormat;
import java.util.ArrayList;
import java.util.Scanner;
publicclassCommissionCalculation
{
publicstaticvoid main(String args[])
{
finaldouble salesTarget=600000;
//create an object of Scanner class to get the keyboard input
Scanner keyInput =newScanner(System.in);
//for currency format
NumberFormat numberFormat =NumberFormat.getCurrencyInst
ance();
//creating an object of SalesPerson class
SalesPerson salesPerson =newSalesPerson();
double sale1 =0,sale2 =0;
double compensation1 =0,compensation2 =0;
String name1,name2;
ArrayList<SalesPerson> array=newArrayList<SalesPerson>();
System.out.print("Enter the number of sales person record : ");
int records = keyInput.nextInt();
for(int i=0;i<records;i++)
{
//prompt the user to enter the annual sales
System.out.print("Enter the Name of Sales Person : ");
String name = keyInput.next();
System.out.print("Enter the annual sales : ");
double sale = keyInput.nextDouble();
salesPerson.setAnnualSales(sale);
//Calculating the Compensation
double totalcompensation=salesPerson.getAnnualCompensation(
);
System.out.println("The total annual compensation : "+totalcom
pensation);
array.add(newSalesPerson(name,sale,totalcompensati
on));
}
System.out.println("ArraySize:"+array.size());
System.out.println("Enter name of first sales person for compari
son:");
name1 = keyInput.next();
for(SalesPerson array1 : array){
if(array1.getName().equalsIgnoreCase(name1))
{
compensation1=array1.getAnnualCompensation();
sale1=array1.getAnnualSales();
}
}
System.out.println("Enter name of second sales person for comp
arison:");
name2 = keyInput.next();
for(SalesPerson array1 : array){
if(array1.getName().equalsIgnoreCase(name2))
{
compensation2=array1.getAnnualCompensation();
sale2=array1.getAnnualSales();
}
}
if(sale1>sale2)
{
System.out.println("Compensation Difference:"+(compensation1
-compensation2));
System.out.println(""+name2+" should increase its sale by"+(sal
e1-sale2)+" to earn as much as "+name1+"");
}
elseif(sale1<sale2)
{
System.out.println("Compensation Difference:"+(compensation2
-compensation1));
System.out.println(""+name1+" should increase its sale by"+(sal
e2-sale1)+" to earn as much as "+name2+"");
}
else
System.out.println(""+name1+" earn same as much as "+name2+
"");
}
}
CommissionCalculation/src/SalesPerson.javaCommissionCalcul
ation/src/SalesPerson.java
publicclassSalesPerson{
privatefinaldouble fixedSalary =120000.00;
privatefinaldouble commissionRate =1.2;
privatefinaldouble salesTarget=600000;
privatefinaldouble accelerationfactor=1.20;
privateString name;
privatedouble totalComm;
privatedouble annualSales;
publicSalesPerson saleperson;
publicdouble getTotalComm(){
return totalComm;
}
publicvoid setTotalComm(double totalComm){
this.totalComm = totalComm;
}
publicSalesPerson getSaleperson(){
return saleperson;
}
publicvoid setSaleperson(SalesPerson saleperson){
this.saleperson = saleperson;
}
publicString getName(){
return name;
}
publicvoid setName(String name){
this.name = name;
}
//default constructor
publicSalesPerson(){
annualSales =0.0;
}
publicSalesPerson(StringName,double sale,doubleComm){
name=Name;
totalComm=Comm;
annualSales=sale;
}
//parameterized constructor
publicSalesPerson(double aSale){
annualSales = aSale;
}
//getter method for the annual sales
publicdouble getAnnualSales(){
return annualSales;
}
//method to set the value of annual sale
publicvoid setAnnualSales(double aSale){
annualSales = aSale;
}
//method to calculate and get commission
publicdouble getCommission()
{
if(annualSales<(0.80*salesTarget))
{
return0;
}
elseif(annualSales>=(0.80*salesTarget)&& annualSales<600000
)
{
return annualSales *(commissionRate/100.0);
}
else
{
int count=0;
for(doubleSales=salesTarget;Sales<=annualSales;Sales+=5000)
{
count=count+1;
}
return(((annualSales)*(commissionRate*Math.pow(1.2,count)))/
100);
}
}
//method to calculate and get annual compensation
publicdouble getAnnualCompensation(){
return fixedSalary + getCommission();
}
}
* To change this license header, choose License Headers in
Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package week4;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.util.Scanner;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTable;
/**
*
*
* @author Maricela
*/
public class Week4 {
public Week4 () {
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
//Show yearly gross pay
int firstNumber = 1;
int scndNumber = 3;
int fixedSalary = 5000;
System.out.println(fixedSalary + " is the yearly gross pay
of a sales person.");
// Show the fact that a sales person will also earn 14% pay of
any sales.
System.out.println("A sales person will also receive an
additional 2.45% of all sales made for the year.");
// Calculate the total sum of the salary plus the commission
earned plus accelerated rate.
System.out.println("The total of a sales person's earning's for
the year is $" + fixedSalary + ", plus an 2.45 percent
commission on all sales for that year.");
// Way of input by keyboard.
Scanner keyboard = new Scanner(System.in);
// Get the sale's person's annual sales.
double salesAmount; //Amount sold for the year
System.out.print("What was your total sales amount? ");
System.out.println(fixedSalary + " is the yearly gross
pay of a sales person.");
// Show the fact that a sales person will also earn 2.45% pay of
any sales.
System.out.println("A sales person will also receive an
additional 2.45% of all sales made for the year.");
// Calculate the total sum of the salary plus the commission
earned.
System.out.println("The total of a sales person's earning's for
the year is $" + fixedSalary + ", plus an 2.45 percent
commission on all sales for that year.");
Scanner keyboard;()
keyboard = new Scanner(System.in);
// Get the sale's person's annual sales.
double salesAmount; //Amount sold for the year
System.out.print("What was your total sales amount? ");
}
public void main args(String[] ) { // Indicate the yearly gross
pay.
int firstNumber = 1;
int secondNumber = 3;
int fixedSalary = 55000;
System.out.println(fixedSalary + " is the yearly gross pay of a
sales person.");
// Show the fact that the current sales target for every
salesperson is $700,000. The sales incentive will only start
when 80% of the sales target is met.
System.out.println("A sales person will also receive an
additional 2.45% of all sales made for the year.");
// Calculate the total sum of the salary plus the commission
earned.
System.out.println("The total of a sales person's earning's for
the year is $" + fixedSalary + ", 2.45 percent commission starts
when 80% of the sales target is met.");
// Way of input by keyboard.
Scanner keyboard = new Scanner(System.in);
// Get the sale's person's annual sales.
double salesAmount; //Amount sold for the year
System.out.print("What was your total sales amount? ");
salesAmount = keyboard.nextDouble();
//Example: Sale's Person Response is 165000 in annual sales.
// Calculate the sales incentive earned.
double saleIn; //Total earned ytd.
int spResponse = 700000;
saleIn = (spResponse) * .245;
System.out.println("The total incentive is $" + saleIn);
// Calculate the total income for the year.
int totalAnualComp = 2.45% + 500000;
System.out.println("The total annual compensation is $" +
totalAnualComp );
}
public class table extends JFrame {
JTable table;
public table() {
setLayout (new FlowLayout());
String[] columnNames = {"Total Sales", "Total
Compensation"};
object data = {
/* {"100,000", " Value"},
{"105,000", "Calculated Value"},
{"110,000", "Calculated Value"},
{"115,000", "Calculated Value"},
{"120,000", "Calculated Value"},
{"125,000", "Calculated Value"},
{"130,000", "Calculated Value"},
{"135,000", "Calculated Value"},
{"140,000", "Calculated Value"},
{"145,000", "Calculated Value"},
{"150,000", "Calculated Value"},*/
};
table = new JTable(data, columnNames);
table.setPreferredScrollableViewportSize(new Dimension(500,
50));
table.setFillsViewportHeight(true);
JScrollPane scrollpane = new JScrollPane(table);
add(scrollpane);
}
/**
*
* @param args
*/
public void main(String args[]) {
table gui = new table();
gui.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
gui.setSize(400,200);
gui.setVisible(true);
gui.setTitle("Commission Table");
}
}
public class Salesperson {
public static void main(String[] args) {
int count = 0;
int index = 0;
Scanner scan = new Scanner (System.in);
String prompt = ("Enter the salesperson's names: ");
System.out.print ("This program will ask you to enter your
name. Enter the salesperson's names. How many are" + "there");
int amount = scan.nextInt();
String[] name = new String[amount];
String[] secondname = new String[amount];
System.out.print ("You entered" +amount+ "the names of your
salespersons.");
System.out.println ("");
for (index = 0; index < amount; index++)
{
System.out.print("Enter next name: ");
name[index] = scan.next();
}
System.out.println ("");
System.out.println ("Then enter salary * commission + 2.45
percent if sales reach 80 pecent of 500,000: ");
System.out.println ("");
for (index = name.length - 1; index >= 0; index--)
{
}
System.out.println ("");
for (String names2 : name)
{
System.out.println (names2+"");
}

More Related Content

Similar to CommissionCalculationbuildclasses.netbeans_automatic_build.docx

JobTestbuild.xml Builds, tests, and runs the project J.docx
JobTestbuild.xml      Builds, tests, and runs the project J.docxJobTestbuild.xml      Builds, tests, and runs the project J.docx
JobTestbuild.xml Builds, tests, and runs the project J.docxpriestmanmable
 
PRG 420 Week 3 Individual Assignment Netbeans Project (annual co.docx
PRG 420 Week 3 Individual Assignment Netbeans Project (annual co.docxPRG 420 Week 3 Individual Assignment Netbeans Project (annual co.docx
PRG 420 Week 3 Individual Assignment Netbeans Project (annual co.docxharrisonhoward80223
 
How to run java program without IDE
How to run java program without IDEHow to run java program without IDE
How to run java program without IDEShweta Oza
 
Dart for Java Developers
Dart for Java DevelopersDart for Java Developers
Dart for Java DevelopersYakov Fain
 
PRG 421 Education Specialist / snaptutorial.com
PRG 421 Education Specialist / snaptutorial.comPRG 421 Education Specialist / snaptutorial.com
PRG 421 Education Specialist / snaptutorial.comMcdonaldRyan108
 
PRG 421 Massive success / tutorialrank.com
PRG 421 Massive success / tutorialrank.comPRG 421 Massive success / tutorialrank.com
PRG 421 Massive success / tutorialrank.comBromleyz1
 
PRG 421 Inspiring Innovation / tutorialrank.com
PRG 421 Inspiring Innovation / tutorialrank.comPRG 421 Inspiring Innovation / tutorialrank.com
PRG 421 Inspiring Innovation / tutorialrank.comBromleyz24
 
PRG 421 Creative and Effective/newtonhelp.com
PRG 421 Creative and Effective/newtonhelp.comPRG 421 Creative and Effective/newtonhelp.com
PRG 421 Creative and Effective/newtonhelp.commyblue101
 
PRG 421 Extraordinary Life/newtonhelp.com 
PRG 421 Extraordinary Life/newtonhelp.com PRG 421 Extraordinary Life/newtonhelp.com 
PRG 421 Extraordinary Life/newtonhelp.com myblue41
 
JavaOne 2016: Life after Modularity
JavaOne 2016: Life after ModularityJavaOne 2016: Life after Modularity
JavaOne 2016: Life after ModularityDanHeidinga
 
CICON2010: Adam Griffiths - CodeIgniter 2
CICON2010: Adam Griffiths - CodeIgniter 2CICON2010: Adam Griffiths - CodeIgniter 2
CICON2010: Adam Griffiths - CodeIgniter 2CodeIgniter Conference
 
Introduction to maven, its configuration, lifecycle and relationship to JS world
Introduction to maven, its configuration, lifecycle and relationship to JS worldIntroduction to maven, its configuration, lifecycle and relationship to JS world
Introduction to maven, its configuration, lifecycle and relationship to JS worldDmitry Bakaleinik
 
Gradle - the Enterprise Automation Tool
Gradle  - the Enterprise Automation ToolGradle  - the Enterprise Automation Tool
Gradle - the Enterprise Automation ToolIzzet Mustafaiev
 
Improving build solutions dependency management with webpack
Improving build solutions  dependency management with webpackImproving build solutions  dependency management with webpack
Improving build solutions dependency management with webpackNodeXperts
 
Talk on .NET assemblies
Talk on .NET assembliesTalk on .NET assemblies
Talk on .NET assembliesVidya Agarwal
 
Morgagebuildclasses.netbeans_automatic_buildMorgagebui.docx
Morgagebuildclasses.netbeans_automatic_buildMorgagebui.docxMorgagebuildclasses.netbeans_automatic_buildMorgagebui.docx
Morgagebuildclasses.netbeans_automatic_buildMorgagebui.docxgilpinleeanna
 

Similar to CommissionCalculationbuildclasses.netbeans_automatic_build.docx (20)

JobTestbuild.xml Builds, tests, and runs the project J.docx
JobTestbuild.xml      Builds, tests, and runs the project J.docxJobTestbuild.xml      Builds, tests, and runs the project J.docx
JobTestbuild.xml Builds, tests, and runs the project J.docx
 
PRG 420 Week 3 Individual Assignment Netbeans Project (annual co.docx
PRG 420 Week 3 Individual Assignment Netbeans Project (annual co.docxPRG 420 Week 3 Individual Assignment Netbeans Project (annual co.docx
PRG 420 Week 3 Individual Assignment Netbeans Project (annual co.docx
 
How to run java program without IDE
How to run java program without IDEHow to run java program without IDE
How to run java program without IDE
 
Dart for Java Developers
Dart for Java DevelopersDart for Java Developers
Dart for Java Developers
 
PRG 421 Education Specialist / snaptutorial.com
PRG 421 Education Specialist / snaptutorial.comPRG 421 Education Specialist / snaptutorial.com
PRG 421 Education Specialist / snaptutorial.com
 
PRG 421 Massive success / tutorialrank.com
PRG 421 Massive success / tutorialrank.comPRG 421 Massive success / tutorialrank.com
PRG 421 Massive success / tutorialrank.com
 
PRG 421 Inspiring Innovation / tutorialrank.com
PRG 421 Inspiring Innovation / tutorialrank.comPRG 421 Inspiring Innovation / tutorialrank.com
PRG 421 Inspiring Innovation / tutorialrank.com
 
Maven2交流
Maven2交流Maven2交流
Maven2交流
 
PRG 421 Creative and Effective/newtonhelp.com
PRG 421 Creative and Effective/newtonhelp.comPRG 421 Creative and Effective/newtonhelp.com
PRG 421 Creative and Effective/newtonhelp.com
 
PRG 421 Extraordinary Life/newtonhelp.com 
PRG 421 Extraordinary Life/newtonhelp.com PRG 421 Extraordinary Life/newtonhelp.com 
PRG 421 Extraordinary Life/newtonhelp.com 
 
GradleFX
GradleFXGradleFX
GradleFX
 
SFDX Presentation
SFDX PresentationSFDX Presentation
SFDX Presentation
 
JavaOne 2016: Life after Modularity
JavaOne 2016: Life after ModularityJavaOne 2016: Life after Modularity
JavaOne 2016: Life after Modularity
 
CICON2010: Adam Griffiths - CodeIgniter 2
CICON2010: Adam Griffiths - CodeIgniter 2CICON2010: Adam Griffiths - CodeIgniter 2
CICON2010: Adam Griffiths - CodeIgniter 2
 
Prg421
Prg421Prg421
Prg421
 
Introduction to maven, its configuration, lifecycle and relationship to JS world
Introduction to maven, its configuration, lifecycle and relationship to JS worldIntroduction to maven, its configuration, lifecycle and relationship to JS world
Introduction to maven, its configuration, lifecycle and relationship to JS world
 
Gradle - the Enterprise Automation Tool
Gradle  - the Enterprise Automation ToolGradle  - the Enterprise Automation Tool
Gradle - the Enterprise Automation Tool
 
Improving build solutions dependency management with webpack
Improving build solutions  dependency management with webpackImproving build solutions  dependency management with webpack
Improving build solutions dependency management with webpack
 
Talk on .NET assemblies
Talk on .NET assembliesTalk on .NET assemblies
Talk on .NET assemblies
 
Morgagebuildclasses.netbeans_automatic_buildMorgagebui.docx
Morgagebuildclasses.netbeans_automatic_buildMorgagebui.docxMorgagebuildclasses.netbeans_automatic_buildMorgagebui.docx
Morgagebuildclasses.netbeans_automatic_buildMorgagebui.docx
 

More from monicafrancis71118

1. Discuss Blockchains potential application in compensation system.docx
1. Discuss Blockchains potential application in compensation system.docx1. Discuss Blockchains potential application in compensation system.docx
1. Discuss Blockchains potential application in compensation system.docxmonicafrancis71118
 
1. Describe the characteristics of the aging process. Explain how so.docx
1. Describe the characteristics of the aging process. Explain how so.docx1. Describe the characteristics of the aging process. Explain how so.docx
1. Describe the characteristics of the aging process. Explain how so.docxmonicafrancis71118
 
1. Dis. 7Should we continue to collect data on race and .docx
1. Dis. 7Should we continue to collect data on race and .docx1. Dis. 7Should we continue to collect data on race and .docx
1. Dis. 7Should we continue to collect data on race and .docxmonicafrancis71118
 
1. Differentiate crisis intervention from other counseling therapeut.docx
1. Differentiate crisis intervention from other counseling therapeut.docx1. Differentiate crisis intervention from other counseling therapeut.docx
1. Differentiate crisis intervention from other counseling therapeut.docxmonicafrancis71118
 
1. Despite our rational nature, our ability to reason well is ofte.docx
1. Despite our rational nature, our ability to reason well is ofte.docx1. Despite our rational nature, our ability to reason well is ofte.docx
1. Despite our rational nature, our ability to reason well is ofte.docxmonicafrancis71118
 
1. Describe the ethical challenges faced by organizations operating .docx
1. Describe the ethical challenges faced by organizations operating .docx1. Describe the ethical challenges faced by organizations operating .docx
1. Describe the ethical challenges faced by organizations operating .docxmonicafrancis71118
 
1. Describe in your own words the anatomy of a muscle.  This sho.docx
1. Describe in your own words the anatomy of a muscle.  This sho.docx1. Describe in your own words the anatomy of a muscle.  This sho.docx
1. Describe in your own words the anatomy of a muscle.  This sho.docxmonicafrancis71118
 
1. Describe how your attitude of including aspects of health literac.docx
1. Describe how your attitude of including aspects of health literac.docx1. Describe how your attitude of including aspects of health literac.docx
1. Describe how your attitude of including aspects of health literac.docxmonicafrancis71118
 
1. Choose a behavior (such as overeating, shopping, Internet use.docx
1. Choose a behavior (such as overeating, shopping, Internet use.docx1. Choose a behavior (such as overeating, shopping, Internet use.docx
1. Choose a behavior (such as overeating, shopping, Internet use.docxmonicafrancis71118
 
1. Case 3-4 Franklin Industries’ Whistleblowing (a GVV Case)Natali.docx
1. Case 3-4 Franklin Industries’ Whistleblowing (a GVV Case)Natali.docx1. Case 3-4 Franklin Industries’ Whistleblowing (a GVV Case)Natali.docx
1. Case 3-4 Franklin Industries’ Whistleblowing (a GVV Case)Natali.docxmonicafrancis71118
 
1. Cryptography is used to protect confidential data in many areas. .docx
1. Cryptography is used to protect confidential data in many areas. .docx1. Cryptography is used to protect confidential data in many areas. .docx
1. Cryptography is used to protect confidential data in many areas. .docxmonicafrancis71118
 
1. Compare and contrast steganography and cryptography.2. Why st.docx
1. Compare and contrast steganography and cryptography.2. Why st.docx1. Compare and contrast steganography and cryptography.2. Why st.docx
1. Compare and contrast steganography and cryptography.2. Why st.docxmonicafrancis71118
 
1. Date September 13, 2017 – September 15, 2017 2. Curr.docx
1. Date September 13, 2017 – September 15, 2017 2. Curr.docx1. Date September 13, 2017 – September 15, 2017 2. Curr.docx
1. Date September 13, 2017 – September 15, 2017 2. Curr.docxmonicafrancis71118
 
1. compare and contrast predictive analytics with prescriptive and d.docx
1. compare and contrast predictive analytics with prescriptive and d.docx1. compare and contrast predictive analytics with prescriptive and d.docx
1. compare and contrast predictive analytics with prescriptive and d.docxmonicafrancis71118
 
1. Creating and maintaining relationships between home and schoo.docx
1. Creating and maintaining relationships between home and schoo.docx1. Creating and maintaining relationships between home and schoo.docx
1. Creating and maintaining relationships between home and schoo.docxmonicafrancis71118
 
1. Compare and contrast Strategic and Tactical Analysis and its .docx
1. Compare and contrast Strategic and Tactical Analysis and its .docx1. Compare and contrast Strategic and Tactical Analysis and its .docx
1. Compare and contrast Strategic and Tactical Analysis and its .docxmonicafrancis71118
 
1. Coalition ProposalVaccination Policy for Infectious Disease P.docx
1. Coalition ProposalVaccination Policy for Infectious Disease P.docx1. Coalition ProposalVaccination Policy for Infectious Disease P.docx
1. Coalition ProposalVaccination Policy for Infectious Disease P.docxmonicafrancis71118
 
1. Company Description and Backgrounda. Weight Watchers was cr.docx
1. Company Description and Backgrounda. Weight Watchers was cr.docx1. Company Description and Backgrounda. Weight Watchers was cr.docx
1. Company Description and Backgrounda. Weight Watchers was cr.docxmonicafrancis71118
 
1. Come up with TWO movie ideas -- as in for TWO screenplays that .docx
1. Come up with TWO movie ideas -- as in for TWO screenplays that .docx1. Come up with TWO movie ideas -- as in for TWO screenplays that .docx
1. Come up with TWO movie ideas -- as in for TWO screenplays that .docxmonicafrancis71118
 
1. Choose a case for the paper that interests you. Most choose a .docx
1. Choose a case for the paper that interests you.  Most choose a .docx1. Choose a case for the paper that interests you.  Most choose a .docx
1. Choose a case for the paper that interests you. Most choose a .docxmonicafrancis71118
 

More from monicafrancis71118 (20)

1. Discuss Blockchains potential application in compensation system.docx
1. Discuss Blockchains potential application in compensation system.docx1. Discuss Blockchains potential application in compensation system.docx
1. Discuss Blockchains potential application in compensation system.docx
 
1. Describe the characteristics of the aging process. Explain how so.docx
1. Describe the characteristics of the aging process. Explain how so.docx1. Describe the characteristics of the aging process. Explain how so.docx
1. Describe the characteristics of the aging process. Explain how so.docx
 
1. Dis. 7Should we continue to collect data on race and .docx
1. Dis. 7Should we continue to collect data on race and .docx1. Dis. 7Should we continue to collect data on race and .docx
1. Dis. 7Should we continue to collect data on race and .docx
 
1. Differentiate crisis intervention from other counseling therapeut.docx
1. Differentiate crisis intervention from other counseling therapeut.docx1. Differentiate crisis intervention from other counseling therapeut.docx
1. Differentiate crisis intervention from other counseling therapeut.docx
 
1. Despite our rational nature, our ability to reason well is ofte.docx
1. Despite our rational nature, our ability to reason well is ofte.docx1. Despite our rational nature, our ability to reason well is ofte.docx
1. Despite our rational nature, our ability to reason well is ofte.docx
 
1. Describe the ethical challenges faced by organizations operating .docx
1. Describe the ethical challenges faced by organizations operating .docx1. Describe the ethical challenges faced by organizations operating .docx
1. Describe the ethical challenges faced by organizations operating .docx
 
1. Describe in your own words the anatomy of a muscle.  This sho.docx
1. Describe in your own words the anatomy of a muscle.  This sho.docx1. Describe in your own words the anatomy of a muscle.  This sho.docx
1. Describe in your own words the anatomy of a muscle.  This sho.docx
 
1. Describe how your attitude of including aspects of health literac.docx
1. Describe how your attitude of including aspects of health literac.docx1. Describe how your attitude of including aspects of health literac.docx
1. Describe how your attitude of including aspects of health literac.docx
 
1. Choose a behavior (such as overeating, shopping, Internet use.docx
1. Choose a behavior (such as overeating, shopping, Internet use.docx1. Choose a behavior (such as overeating, shopping, Internet use.docx
1. Choose a behavior (such as overeating, shopping, Internet use.docx
 
1. Case 3-4 Franklin Industries’ Whistleblowing (a GVV Case)Natali.docx
1. Case 3-4 Franklin Industries’ Whistleblowing (a GVV Case)Natali.docx1. Case 3-4 Franklin Industries’ Whistleblowing (a GVV Case)Natali.docx
1. Case 3-4 Franklin Industries’ Whistleblowing (a GVV Case)Natali.docx
 
1. Cryptography is used to protect confidential data in many areas. .docx
1. Cryptography is used to protect confidential data in many areas. .docx1. Cryptography is used to protect confidential data in many areas. .docx
1. Cryptography is used to protect confidential data in many areas. .docx
 
1. Compare and contrast steganography and cryptography.2. Why st.docx
1. Compare and contrast steganography and cryptography.2. Why st.docx1. Compare and contrast steganography and cryptography.2. Why st.docx
1. Compare and contrast steganography and cryptography.2. Why st.docx
 
1. Date September 13, 2017 – September 15, 2017 2. Curr.docx
1. Date September 13, 2017 – September 15, 2017 2. Curr.docx1. Date September 13, 2017 – September 15, 2017 2. Curr.docx
1. Date September 13, 2017 – September 15, 2017 2. Curr.docx
 
1. compare and contrast predictive analytics with prescriptive and d.docx
1. compare and contrast predictive analytics with prescriptive and d.docx1. compare and contrast predictive analytics with prescriptive and d.docx
1. compare and contrast predictive analytics with prescriptive and d.docx
 
1. Creating and maintaining relationships between home and schoo.docx
1. Creating and maintaining relationships between home and schoo.docx1. Creating and maintaining relationships between home and schoo.docx
1. Creating and maintaining relationships between home and schoo.docx
 
1. Compare and contrast Strategic and Tactical Analysis and its .docx
1. Compare and contrast Strategic and Tactical Analysis and its .docx1. Compare and contrast Strategic and Tactical Analysis and its .docx
1. Compare and contrast Strategic and Tactical Analysis and its .docx
 
1. Coalition ProposalVaccination Policy for Infectious Disease P.docx
1. Coalition ProposalVaccination Policy for Infectious Disease P.docx1. Coalition ProposalVaccination Policy for Infectious Disease P.docx
1. Coalition ProposalVaccination Policy for Infectious Disease P.docx
 
1. Company Description and Backgrounda. Weight Watchers was cr.docx
1. Company Description and Backgrounda. Weight Watchers was cr.docx1. Company Description and Backgrounda. Weight Watchers was cr.docx
1. Company Description and Backgrounda. Weight Watchers was cr.docx
 
1. Come up with TWO movie ideas -- as in for TWO screenplays that .docx
1. Come up with TWO movie ideas -- as in for TWO screenplays that .docx1. Come up with TWO movie ideas -- as in for TWO screenplays that .docx
1. Come up with TWO movie ideas -- as in for TWO screenplays that .docx
 
1. Choose a case for the paper that interests you. Most choose a .docx
1. Choose a case for the paper that interests you.  Most choose a .docx1. Choose a case for the paper that interests you.  Most choose a .docx
1. Choose a case for the paper that interests you. Most choose a .docx
 

Recently uploaded

How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentInMediaRes1
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerunnathinaik
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfadityarao40181
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxEyham Joco
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 

Recently uploaded (20)

Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media Component
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptx
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developer
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdf
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptx
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 

CommissionCalculationbuildclasses.netbeans_automatic_build.docx

  • 1. CommissionCalculation/build/classes/.netbeans_automatic_buil d CommissionCalculation/build/classes/.netbeans_update_resourc es CommissionCalculation/build/classes/commissioncalculation/Co mmissionCalculation.rs CommissionCalculation/build/classes/commissioncalculation/Sa lesPerson.rs CommissionCalculation/build/classes/CommissionCalculation.cl asspublicsynchronizedclass CommissionCalculation { public void CommissionCalculation(); publicstatic void main(String[]); } CommissionCalculation/build/classes/SalesPerson.classpublicsy nchronizedclass SalesPerson { privatefinal double fixedSalary; privatefinal double commissionRate; privatefinal double salesTarget; privatefinal double accelerationfactor; private String name; private double totalComm; private double annualSales; public SalesPerson saleperson; public double getTotalComm(); public void setTotalComm(double);
  • 2. public SalesPerson getSaleperson(); public void setSaleperson(SalesPerson); public String getName(); public void setName(String); public void SalesPerson(); public void SalesPerson(String, double, double); public void SalesPerson(double); public double getAnnualSales(); public void setAnnualSales(double); public double getCommission(); public double getAnnualCompensation(); } CommissionCalculation/build.xml Builds, tests, and runs the project CommissionCalculation. CommissionCalculation/lib/CopyLibs/org-netbeans-modules- java-j2seproject-copylibstask.jar META-INF/MANIFEST.MF Manifest-Version: 1.0 Ant-Version: Apache Ant 1.9.2 Created-By: 1.7.0_25-b15 (Oracle Corporation) NetBeans-Own-Library: true
  • 3. org/netbeans/modules/java/j2seproject/copylibstask/Bundle.prop erties # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. # # Copyright 1997-2010 Oracle and/or its affiliates. All rights reserved. # # Oracle and Java are registered trademarks of Oracle and/or its affiliates. # Other names may be trademarks of their respective owners. # # The contents of this file are subject to the terms of either the GNU # General Public License Version 2 only ("GPL") or the Common # Development and Distribution License("CDDL") (collectively, the # "License"). You may not use this file except in compliance with the # License. You can obtain a copy of the License at # http://www.netbeans.org/cddl-gplv2.html # or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the # specific language governing permissions and limitations under the # License. When distributing the software, include this License Header # Notice in each file and include the License file at # nbbuild/licenses/CDDL-GPL-2-CP. Oracle designates this # particular file as subject to the "Classpath" exception as provided # by Oracle in the GPL Version 2 section of the License file that # accompanied this code. If applicable, add the following below the
  • 4. # License Header, with the fields enclosed by brackets [] replaced by # your own identifying information: # "Portions Copyrighted [year] [name of copyright owner]" # # Contributor(s): # # The Original Software is NetBeans. The Initial Developer of the Original # Software is Sun Microsystems, Inc. Portions Copyright 1997- 2006 Sun # Microsystems, Inc. All Rights Reserved. # # If you wish your version of this file to be governed by only the CDDL # or only the GPL Version 2, indicate your decision by adding # "[Contributor] elects to include this software in this distribution # under the [CDDL or GPL Version 2] license." If you do not indicate a # single choice of license, a recipient has the option to distribute # your version of this file under either the CDDL, the GPL Version 2 or # to extend the choice of license to its licensees as provided above. # However, if you add GPL Version 2 code and therefore, elected the GPL # Version 2 license, then the option applies only if the new code is # made subject to such option by the copyright holder. TXT_README_FILE_NAME=README.TXT TXT_README_FILE_CONTENT====================== ===n BUILD OUTPUT DESCRIPTIONn
  • 5. ========================n n When you build an Java application project that has a main class, the IDEn automatically copies all of the JARn files on the project's classpath to your project's dist/lib folder. The IDEn also adds each of the JAR files to the Class-Path element in the applicationn JAR file's manifest file (MANIFEST.MF).n n To run the project from the command line, go to the dist folder andn type the following:n n java -jar '"{0}'" n n To distribute this project, zip up the dist folder (including the lib folder)n and distribute the ZIP file.n n Notes:n n * If two JAR files on the project classpath have the same name, only the firstn JAR file is copied to the lib folder.n * Only JAR files are copied to the lib folder.n If the classpath contains other types of files or folders, these files (folders)n are not copied.n * If a library on the project's classpath also has a Class-Path elementn specified in the manifest,the content of the Class-Path element has to be onn the project's runtime path.n * To set a main class in a standard Java project, right-click the
  • 6. project noden in the Projects window and choose Properties. Then click Run and enter then class name in the Main Class field. Alternatively, you can manually type then class name in the manifest Main-Class element. org/netbeans/modules/java/j2seproject/copylibstask/CopyFiles.c lasspackage org.netbeans.modules.java.j2seproject.copylibstask; publicsynchronizedclass CopyFiles extends org.apache.tools.ant.Task { private java.io.File todir; private java.io.File iftldtodir; private String files; private String manifestproperty; public void CopyFiles(); public void execute() throws org.apache.tools.ant.BuildException; private boolean containsTLD(java.io.File); public String getFiles(); public void setFiles(String); public java.io.File getToDir(); public void setToDir(java.io.File); public java.io.File getIfTLDToDir(); public void setIfTLDToDir(java.io.File); public String getManifestProperty(); public void setManifestProperty(String); static void <clinit>(); } org/netbeans/modules/java/j2seproject/copylibstask/CopyLibs.cl asspackage org.netbeans.modules.java.j2seproject.copylibstask; publicsynchronizedclass CopyLibs extends org.apache.tools.ant.taskdefs.Jar {
  • 7. privatestaticfinal String LIB = lib; privatestaticfinal String ATTR_CLASS_PATH = Class-Path; privatestaticfinal String MANIFEST = META- INF/MANIFEST.MF; privatestaticfinal String INDEX = META-INF/INDEX.LIST; privatestaticfinal String UTF_8 = UTF-8; privatestaticfinal String UTF8 = UTF8; org.apache.tools.ant.types.Path runtimePath; org.apache.tools.ant.types.Path excludeFromCopy; private boolean rebase; public void CopyLibs(); public void setRuntimeClassPath(org.apache.tools.ant.types.Path); public org.apache.tools.ant.types.Path getRuntimeClassPath(); public void setExcludeFromCopy(org.apache.tools.ant.types.Path); public org.apache.tools.ant.types.Path getExcludeFromCopy(); public boolean isRebase(); public void setRebase(boolean); public void setEncoding(String); public void execute() throws org.apache.tools.ant.BuildException; private boolean rebase(java.io.File, java.io.File); privatestatic boolean isSigned(org.apache.tools.ant.taskdefs.Manifest); privatestatic void copy(java.io.InputStream, java.io.OutputStream) throws java.io.IOException; privatestatic boolean isUTF8(String); static void <clinit>(); } org/netbeans/modules/java/j2seproject/copylibstask/antlib.xml
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14. Must set src.dir Must set test.src.dir Must set build.dir Must set dist.dir
  • 15. Must set build.classes.dir Must set dist.javadoc.dir Must set build.test.classes.dir Must set build.test.results.dir Must set build.classes.excludes Must set dist.jar
  • 16.
  • 18.
  • 19.
  • 20.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28. Must set JVM to use for profiling in profiler.info.jvm Must set profiler agent JVM arguments in profiler.info.jvmargs.agent
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34. Must select some files in the IDE or set javac.includes
  • 35. To run this application from the command line without Ant, try:
  • 37. Must select one file in the IDE or set run.class Must select one file in the IDE or set run.class Must select one file in the IDE or set debug.class
  • 38. Must select one file in the IDE or set debug.class Must set fix.includes This target only works when run from inside the NetBeans IDE. Must select one file in the IDE or set profile.class This target only works when run from inside the NetBeans IDE.
  • 39. This target only works when run from inside the NetBeans IDE. This target only works when run from inside the NetBeans IDE.
  • 40. Must select one file in the IDE or set run.class Must select some files in the IDE or set test.includes Must select one file in the IDE or set run.class Must select one file in the IDE or set applet.url
  • 41.
  • 42. Must select some files in the IDE or set javac.includes
  • 43. Some tests failed; see details above. Must select some files in the IDE or set test.includes Some tests failed; see details above. Must select some files in the IDE or set test.class Must select some method in the IDE or set test.method
  • 44. Some tests failed; see details above. Must select one file in the IDE or set test.class Must select one file in the IDE or set test.class Must select some method in the IDE or set test.method Must select one file in the IDE or set applet.url
  • 45. Must select one file in the IDE or set applet.url
  • 46. CommissionCalculation/nbproject/genfiles.properties build.xml.data.CRC32=8683aaba build.xml.script.CRC32=fbd9ff97 [email protected] # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. nbproject/build-impl.xml.data.CRC32=8683aaba nbproject/build-impl.xml.script.CRC32=92729e04
  • 48. annotation.processing.source.output=${build.generated.sources. dir}/ap-source-output build.classes.dir=${build.dir}/classes build.classes.excludes=**/*.java,**/*.form # This directory is removed when the project is cleaned: build.dir=build build.generated.dir=${build.dir}/generated build.generated.sources.dir=${build.dir}/generated-sources # Only compile against the classpath explicitly listed here: build.sysclasspath=ignore build.test.classes.dir=${build.dir}/test/classes build.test.results.dir=${build.dir}/test/results # Uncomment to specify the preferred debugger connection transport: #debug.transport=dt_socket debug.classpath= ${run.classpath} debug.test.classpath= ${run.test.classpath}
  • 49. # Files in build.classes.dir which should be excluded from distribution jar dist.archive.excludes= # This directory is removed when the project is cleaned: dist.dir=dist dist.jar=${dist.dir}/CommissionCalculation.jar dist.javadoc.dir=${dist.dir}/javadoc excludes= includes=** jar.compress=false javac.classpath= # Space-separated list of extra javac options javac.compilerargs= javac.deprecation=false javac.processorpath= ${javac.classpath} javac.source=1.8 javac.target=1.8 javac.test.classpath=
  • 51. mkdist.disabled=false platform.active=default_platform run.classpath= ${javac.classpath}: ${build.classes.dir} # Space-separated list of JVM arguments used when running the project. # You may also define separate properties like run-sys- prop.name=value instead of -Dname=value. # To set system properties for unit tests define test-sys- prop.name=value: run.jvmargs= run.test.classpath= ${javac.test.classpath}: ${build.test.classes.dir} source.encoding=UTF-8 src.dir=src test.src.dir=test
  • 52. CommissionCalculation/nbproject/project.xml org.netbeans.modules.java.j2seproject CommissionCalculation .libnblibraries.properties CommissionCalculation/src/CommissionCalculation.javaCommi ssionCalculation/src/CommissionCalculation.javaimport java.te xt.NumberFormat; import java.util.ArrayList; import java.util.Scanner; publicclassCommissionCalculation { publicstaticvoid main(String args[]) { finaldouble salesTarget=600000; //create an object of Scanner class to get the keyboard input Scanner keyInput =newScanner(System.in); //for currency format NumberFormat numberFormat =NumberFormat.getCurrencyInst ance(); //creating an object of SalesPerson class
  • 53. SalesPerson salesPerson =newSalesPerson(); double sale1 =0,sale2 =0; double compensation1 =0,compensation2 =0; String name1,name2; ArrayList<SalesPerson> array=newArrayList<SalesPerson>(); System.out.print("Enter the number of sales person record : "); int records = keyInput.nextInt(); for(int i=0;i<records;i++) { //prompt the user to enter the annual sales System.out.print("Enter the Name of Sales Person : "); String name = keyInput.next(); System.out.print("Enter the annual sales : "); double sale = keyInput.nextDouble(); salesPerson.setAnnualSales(sale); //Calculating the Compensation double totalcompensation=salesPerson.getAnnualCompensation( ); System.out.println("The total annual compensation : "+totalcom pensation); array.add(newSalesPerson(name,sale,totalcompensati on)); } System.out.println("ArraySize:"+array.size()); System.out.println("Enter name of first sales person for compari son:"); name1 = keyInput.next(); for(SalesPerson array1 : array){ if(array1.getName().equalsIgnoreCase(name1)) { compensation1=array1.getAnnualCompensation();
  • 54. sale1=array1.getAnnualSales(); } } System.out.println("Enter name of second sales person for comp arison:"); name2 = keyInput.next(); for(SalesPerson array1 : array){ if(array1.getName().equalsIgnoreCase(name2)) { compensation2=array1.getAnnualCompensation(); sale2=array1.getAnnualSales(); } } if(sale1>sale2) { System.out.println("Compensation Difference:"+(compensation1 -compensation2)); System.out.println(""+name2+" should increase its sale by"+(sal e1-sale2)+" to earn as much as "+name1+""); } elseif(sale1<sale2) { System.out.println("Compensation Difference:"+(compensation2 -compensation1)); System.out.println(""+name1+" should increase its sale by"+(sal e2-sale1)+" to earn as much as "+name2+""); } else System.out.println(""+name1+" earn same as much as "+name2+ ""); } }
  • 55. CommissionCalculation/src/SalesPerson.javaCommissionCalcul ation/src/SalesPerson.java publicclassSalesPerson{ privatefinaldouble fixedSalary =120000.00; privatefinaldouble commissionRate =1.2; privatefinaldouble salesTarget=600000; privatefinaldouble accelerationfactor=1.20; privateString name; privatedouble totalComm; privatedouble annualSales; publicSalesPerson saleperson; publicdouble getTotalComm(){ return totalComm; } publicvoid setTotalComm(double totalComm){ this.totalComm = totalComm; } publicSalesPerson getSaleperson(){ return saleperson; } publicvoid setSaleperson(SalesPerson saleperson){ this.saleperson = saleperson; } publicString getName(){ return name; } publicvoid setName(String name){ this.name = name; }
  • 56. //default constructor publicSalesPerson(){ annualSales =0.0; } publicSalesPerson(StringName,double sale,doubleComm){ name=Name; totalComm=Comm; annualSales=sale; } //parameterized constructor publicSalesPerson(double aSale){ annualSales = aSale; } //getter method for the annual sales publicdouble getAnnualSales(){ return annualSales; } //method to set the value of annual sale publicvoid setAnnualSales(double aSale){ annualSales = aSale; } //method to calculate and get commission publicdouble getCommission() { if(annualSales<(0.80*salesTarget)) { return0; }
  • 57. elseif(annualSales>=(0.80*salesTarget)&& annualSales<600000 ) { return annualSales *(commissionRate/100.0); } else { int count=0; for(doubleSales=salesTarget;Sales<=annualSales;Sales+=5000) { count=count+1; } return(((annualSales)*(commissionRate*Math.pow(1.2,count)))/ 100); } } //method to calculate and get annual compensation publicdouble getAnnualCompensation(){ return fixedSalary + getCommission(); } } * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package week4; import java.awt.Dimension; import java.awt.FlowLayout; import java.util.Scanner; import javax.swing.JFrame; import javax.swing.JScrollPane;
  • 58. import javax.swing.JTable; /** * * * @author Maricela */ public class Week4 { public Week4 () { } /** * @param args the command line arguments */ public static void main(String[] args) { //Show yearly gross pay int firstNumber = 1; int scndNumber = 3; int fixedSalary = 5000; System.out.println(fixedSalary + " is the yearly gross pay of a sales person."); // Show the fact that a sales person will also earn 14% pay of any sales. System.out.println("A sales person will also receive an additional 2.45% of all sales made for the year."); // Calculate the total sum of the salary plus the commission earned plus accelerated rate. System.out.println("The total of a sales person's earning's for the year is $" + fixedSalary + ", plus an 2.45 percent commission on all sales for that year."); // Way of input by keyboard. Scanner keyboard = new Scanner(System.in); // Get the sale's person's annual sales. double salesAmount; //Amount sold for the year
  • 59. System.out.print("What was your total sales amount? "); System.out.println(fixedSalary + " is the yearly gross pay of a sales person."); // Show the fact that a sales person will also earn 2.45% pay of any sales. System.out.println("A sales person will also receive an additional 2.45% of all sales made for the year."); // Calculate the total sum of the salary plus the commission earned. System.out.println("The total of a sales person's earning's for the year is $" + fixedSalary + ", plus an 2.45 percent commission on all sales for that year."); Scanner keyboard;() keyboard = new Scanner(System.in); // Get the sale's person's annual sales. double salesAmount; //Amount sold for the year System.out.print("What was your total sales amount? "); } public void main args(String[] ) { // Indicate the yearly gross pay. int firstNumber = 1; int secondNumber = 3; int fixedSalary = 55000; System.out.println(fixedSalary + " is the yearly gross pay of a sales person."); // Show the fact that the current sales target for every salesperson is $700,000. The sales incentive will only start when 80% of the sales target is met. System.out.println("A sales person will also receive an additional 2.45% of all sales made for the year."); // Calculate the total sum of the salary plus the commission earned. System.out.println("The total of a sales person's earning's for the year is $" + fixedSalary + ", 2.45 percent commission starts
  • 60. when 80% of the sales target is met."); // Way of input by keyboard. Scanner keyboard = new Scanner(System.in); // Get the sale's person's annual sales. double salesAmount; //Amount sold for the year System.out.print("What was your total sales amount? "); salesAmount = keyboard.nextDouble(); //Example: Sale's Person Response is 165000 in annual sales. // Calculate the sales incentive earned. double saleIn; //Total earned ytd. int spResponse = 700000; saleIn = (spResponse) * .245; System.out.println("The total incentive is $" + saleIn); // Calculate the total income for the year. int totalAnualComp = 2.45% + 500000; System.out.println("The total annual compensation is $" + totalAnualComp ); } public class table extends JFrame { JTable table; public table() { setLayout (new FlowLayout()); String[] columnNames = {"Total Sales", "Total Compensation"}; object data = { /* {"100,000", " Value"}, {"105,000", "Calculated Value"}, {"110,000", "Calculated Value"}, {"115,000", "Calculated Value"}, {"120,000", "Calculated Value"}, {"125,000", "Calculated Value"}, {"130,000", "Calculated Value"}, {"135,000", "Calculated Value"}, {"140,000", "Calculated Value"}, {"145,000", "Calculated Value"}, {"150,000", "Calculated Value"},*/
  • 61. }; table = new JTable(data, columnNames); table.setPreferredScrollableViewportSize(new Dimension(500, 50)); table.setFillsViewportHeight(true); JScrollPane scrollpane = new JScrollPane(table); add(scrollpane); } /** * * @param args */ public void main(String args[]) { table gui = new table(); gui.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); gui.setSize(400,200); gui.setVisible(true); gui.setTitle("Commission Table"); } } public class Salesperson { public static void main(String[] args) { int count = 0; int index = 0; Scanner scan = new Scanner (System.in); String prompt = ("Enter the salesperson's names: "); System.out.print ("This program will ask you to enter your name. Enter the salesperson's names. How many are" + "there"); int amount = scan.nextInt(); String[] name = new String[amount]; String[] secondname = new String[amount]; System.out.print ("You entered" +amount+ "the names of your salespersons."); System.out.println (""); for (index = 0; index < amount; index++)
  • 62. { System.out.print("Enter next name: "); name[index] = scan.next(); } System.out.println (""); System.out.println ("Then enter salary * commission + 2.45 percent if sales reach 80 pecent of 500,000: "); System.out.println (""); for (index = name.length - 1; index >= 0; index--) { } System.out.println (""); for (String names2 : name) { System.out.println (names2+""); }