package

What is the purpose of defining a package in java file?

i am newbie, and just learned that if i define say package my.first.group.here; ... then the java file that is in this package will be placed under my/first/group/here directory. What is the main purpose of putting some java files in a package? also, if i choose to adopt this, how should i group them? thank you EDIT: For any one...

javadoc for package-info.java only

I have a situation where I'd like to execute javadoc in a project that has no classes. It only has package-info.java for one package. When executing javadoc, the following error is given: An error has occurred in JavaDocs report generation:Exit code: 1 - javadoc: error - No public or protected classes found to document. Is there any w...

Make installation package of C# project

I have done a software in C#. How can I make a Installation Package for the software? ...

Emacs-Lisp: How to package emacs-lisp program as PC application?

Just wondering if it's possible to package and deploy emacs and Lisp program as PC application such that once downloaded, running setup.exe (kind of), then the user can start application to make emacs run the specific Lisp program as if the application were implemented by other languages and platform, such as .Net, or Python. With this...

Recommended ways to split some functionality into functions, modules and packages?

There comes a point where, in a relatively large sized project, one need to think about splitting the functionality into various functions, and then various modules, and then various packages. Sometimes across different source distributions (eg: extracting a common utility, such as optparser, into a separate project). The question - how...

eclipse mistakenly interprets packages as "resources", or source folders

I'm importing an existing source tree as an Eclipse Java project. When I do, I get errors in classes (such as mycompany.logging.LogEntry) along the following lines: The package mycompany.logging does not match the expected package "" The problem seems to be that Eclipse does not realize that the directory src/mycompany/logging is a pac...

Shipping Closed-Source Application for Linux

What are some methods I can use to ship a closed-source application for linux? At the moment the application links against a few libraries (WxWidgets, GraphcisMagic, Crypto++, etc). Statically link everything to a single executable? Include the Libraries in a package? Ship the Dynamically Linked executable (and have the user get t...

build and release package in sharepoint

I am new to config / build and release management. We are using VSS for our config management tool and also we are using SharePoint in our project. In VSS we have lot of files like .cs, .snk, .dll, .pdb, .css, .js, .xml etc. We want to make a build/release as a package for testing that should be an internal delivery. I don't have any ide...

Cannot add folders and files to Windows Installer package

I' m using Visual Studio to create windows installer package, i can't add the folders and data files needed for the application. I create the folders needed for the application in the 'application folder'(under 'File System on Target Machine'), then add files into the appropriate folders, and when i install the application and go to the ...

deb package task for Phing

does anybody know a Phing Task to create .deb packages for Debian base linux systems? ...

sharepoint package setup

i am new to sharepoint. i have a sharepoint application. i have to create a package setup (install shield kind of thing) that can deploy the sharepoint solution on the client machine. in my application we have .dll,.ascx,.xml etc files available. i think i have to deploy the dlls,ascx, xml files. Can any body help me on this? how shlou...

Deploying an SSIS Package

I have a a project with multiple packages under the SSIS_Packages folder. Can i deploy one of those package instead of the project? The documentation here indicates to use .SSISDeploymentManifest. I don't want to deploy all the packages under the project, just one to SQL Server 2005. ...

Deploying Oracle PL/SQL Packages using a .Net deployment project

I am trying to put together a deployment package for a psolution which needs to configure an Oracle database schema. The schema contains most of the Oracle object types in one form or another. I want to run the deployment entirely from the deployment application, and have created a custom installation task to perform most of the action...

java package in jsp

i am using netbeans6.7 ide i have created a jsp file usermanagement.jsp in jspfiles folder in web folder and created a java package com.test.test1 then created a java class in temp in this java package now i want to import this java package in usermanagement.jsp i have written <%@ page import=''%> but my package is not getting populat...

Xcode iPhone app package missing files

I'm struggling to figure out what exactly it is that decides which files go into the .app-package when compiling an application in Xcode. I've noticed that most image files go there automatically, while others like yaml-files or psd don't, and I cant find anywhere to set this. So, how do you do this? ...

What is the @package compiler directive for in Cocoa?

I see @package a lot in Apple's header files, but for the life of me, I can't find an authoritative source that describes its meaning. ...

Oracle 10: Is it possible to access a public synonym to a table in a stored procedure or package?

Hello, I've been trying without success to add a reference to a public synonym in a package or stored procedure in oracle for a while, and I'm wondering if there are solutions to this problem short of accessing the tables directly. For instance: CREATE OR REPLACE PROCEDURE test_func AS test_int INTEGER;<br> BEGIN<br> select coun...

Can I overload Perl's =? (And a problem while use Tie)

I choose to use tie and find this: package Galaxy::IO::INI; sub new { my $invocant = shift; my $class = ref($invocant) || $invocant; my $self = {']' => []}; # ini section can never be ']' tie %{$self},'INIHash'; return bless $self, $class; } package INIHash; use Carp; require Tie::Hash; @INIHash::ISA = qw(Tie::StdH...

How to install a package in LaTeX

Hi, I'm fairly new to LaTeX, but have been using my own document template for a couple of years now to do basic typesetting. What I want to do is to add the pst-gantt package from PSTricks. I have never installed a new package before, but want it available to all of my projects. For the sake of completeness, I am running OSX10.6 and u...

What’s the best way to distribute a binary application for Linux?

I just finished porting an application from Windows into Linux. I have to create an installer of the application. The application is not open source => I should distribute the application's binaries (executable file, couple .so files, help files and images). I found several methods to do it: - RPM and DEB packages; - installer in .sh fi...