Okay , I am not sure if this is possible or not , Might sound dumb too , Forgive me for that , But is it possible say for example i am using netbeans and i have created various project and they have one package in each which contains certain programs, is it possible that i make a new project and and new package and call them all the above package in one file and run it ?
say for example i have one hexadecimal to decimal converter and another project i have is decminal to hexadecimal and i have created a new project named convertors and have if and else functions in them
i said sout("1)Hexadecimal to decimal convertor 2)Deciminal to hexadecimal , Type number to use the convertor");
if(userinput=='1')
{
call the hexadecimal to decimal convertor
}
elseif(userinput=='2')
{
call the deciminal to hexadecimal convertor
}
else
sout("invaild")
};
is the calling of external project or package in one project possible ?
Thanks.