[ANNOUNCEMENT] Hetman 1.0 Early Access  - powerful Java file manager

SoftAge has launched the Early Access Program for Hetman 1.0.
Handy Java desktop application Hetman is a dual-panel file manager for the huge Java community.
Hetman is powered by Fusion framework (based on SWT), it has a decent responsive cross platform GUI and impressive overall performance.
Tabbed rich design interface, native cross platform widgets implementation, powerful text editor, advanced console and much more make Hetman the indispensable and full-featured programmer�s tool.
The following features are currently almost complete:
- two panel file management UI
- powerful incremental file navigation
- built-in text editor with syntax highlight
- advanced console
- Windows networking support
- Zip archives
- FTP
- Open API
Planned features:
- Linux and Mac OS X implementations
- Enhancements for Java developers
- just ask � and we'll do it :)
The most important keys to start:
Alt-F1, Alt-F2 � change drive
Ctrl-T � open new file tab
Ctrl-O � open new console
F4 � edit file under cursor
Ctrl-W � close tab
<any symbol in file panel> � start incremental search
Ctrl-F � start incremental search in editor and console output
Alt-Up, Alt-Down � go to next/previous item in selection, search results etc.
Alt-Left, Alt-Right � go to next/previous tab
You can use Button Bar at the bottom to figure out the most important key combinations yourself. It automatically changes state according to current location and modifier key pressed (Ctrl, Alt, Ctrl+Alt),
Hetman�s Open API has been designed to enable adding features easily and quickly. You can develop your own implementation of the file system that will be fully supported by Hetman.
We are focused to bring Java applications to desktop. Hetman is our first attempt in this direction. We invite you to download EAP (Early Access Program) Hetman�s version for testing and evaluation. Your opinion is what matters most to us.
You can read more about Hetman at http://www.myhetman.com.
Early Acess Program page: http://www.myhetman.com/download/eap.html
Should you have any questions or comments, please don�t hesitate to contact us at [email protected].
Best regards,
Hetman Team

You know, I think I'll make it a personal policy to never look at anything that someone dumps an ad for in the formums.

Similar Messages

  • Access generated JAVA files in JDev10g

    Is there a way to access the JAVA files that are generated when a view object or an entity object are created? For example, the file ARandomViewViewImpl.java.
    It was very easy in JDev 9i, but know a can't find the way to do it. Is there a way to do it, if not, will there be a way to do it in the production version?
    Thanks
    J�r�

    Click on the ViewObject in the Navigator, then in the structure pane you'll see the java files associated with it. You may then open it from the structure pane.
    Hope this helps,
    Rob
    Team JDev

  • How to access the *.java file corresponding to a TypeElement T?

    Here is a problem:
    How to access the *.java file corresponding to a TypeElement T from a AnnotationProcessor environment?
    Let us say the hook method
    public boolean process(Set<? extends TypeElement> annos, RoundEnvironment roundEnv)
    is invoked with a TypeElement T such that T.getQualifiedname() = "a.b.c.X"
    And the problem is how to locate the file that has the *.java source code for a.b.c.X?
    That is the file that has the source code for a.b.c.X say "some/path/a/b/c/X.java"?
    For simplicity, let us assume that TypeElement T corresponds to a top-level Java class.

    Pinaki wrote:
    That is not something you as the annotation processor author should be asking about. That is something you the person configuring the javac environment should set up via the -d option or its equivalent.
    I strongly recommend using a separate output directory hierarchy.That is the way the current implementation is. The annotation processor takes a -Aout= <some directory path> to write generated output relative to a user-specified location (which defaults to the class output location).That is contrary to the design of the annotation processing facility. The intended use is for that information to be configured via options like "javac -d".
    Additionally, IMO it is a serious configuration error to put generated files and input files, presumably tracked under version control, in the same directory. Interesting you said that. We are just running some "field trial" with these things and some users want them to be in the same directory of the original *.java files (especially when their source files are spread across many roots) .
    Who knows what the user wants?The user does and the user is free to (mis)configure their environment however they like ;-) However, that is the user's option and the user has control of this via the javac command line. The annotation processor is not the proper place to configure this setting; see slide 7 of http://blogs.sun.com/darcy/resource/J1_2006-BOF-0606.pdf for some thoughts on different roles in annotation processing.
    presumably tracked under version control, in the same directory.version control is another 'usability issues' that we are trying to get our heads around with this stuff. "To check-in or not?" - that seems to be the question. When presented these facilities without any cue, "the users" were divided -- some wanted them to be checked-in, some did not. The context where these generated files being used -- there exists some rationale to check them in a version control system.The right answer depends on the circumstances, but IMO generally generated files should not be checked in under version control, especially if they are derived from other source files. Checking in generated files of this nature just creates the opportunity for them to get out of date with the originating files.

  • Online file storage with access control and file manager integrated to APEX website

    I have APEX 4.2 website with few user accounts. I would like to share approximately 100 GB of documents to users. Some documents will be public (in some public folder) and everyone with account in my website will be able to download that public files. And some files/folders will be with restricted access and only user with appropriate credentials will be able to download it.
    I would like to find some cheap cloud file storage.
    Some storage that offers plugin/component = file manager that will be integrated to my APEX website and authentication will be transparent to my users (authentication with some API or URL). Every user will see only his files. I want some ready to use component and call only minimum API.
    I would like to integrate that storage to my website or call some user specific URL and redirect my user to some page with file manager.
    All files will be read only for all users.
    Thanks for some tips

    what will you be using for your file manager?  Or do you even know yet?
    I do not have tons of experience but if I had to come up with a solution I would build the interface with APEX and use the database to store the files inside so you can control access.
    You can create a procedure that takes in parameters like username, session id, encrypted session id from the browser cookie and either return the file or give the user an error message letting them know they arent authorized.  You could use plugins to give the users a better file managing experience like the 'multiple file upload' plugin that allows AJAX based multiple file uploading.
    Id put this on an amazon EC2 cloud micro instance.  It's uber cheap.

  • Access another java file

    hello
    quick question again
    i have the main java page that calls and child page . when the child pg is called and loads , a custom sequence from the EOImpl.java gets the next number which is a primary key. if i choose to update a record all the correct data is called but in the background the sequence gets the next number which isnt used. so i might have 11 12 (then i update 12) 14 15 16 (i updated 16 twice) then 19 the wasted number is 13 17 18. trying to get a continuous number
    i would like to put this in the EOImpl.java .... if (pageContext.getParameter("save") != null ){   then call the sequence }
    its like this right now
    public void create(AttributeList attributeList)
    super.create(attributeList);
    setPbId(getOADBTransaction().getSequenceValue("Sequence_107_S"));
    trying to get this
    public void create(AttributeList attributeList)
    super.create(attributeList);
    if (pageContext.getParameter("save") != null )
    {     setPbId(getOADBTransaction().getSequenceValue("Sequence_107_S"));
    so when i put that bit of code in the EOImpl.java i get the error Error(79,11): variable pageContext not found in class ...
    how do i extend the child page to the EOImpl.java (not sure if i used terms) or what seem to be the problem.
    thanks

    You cant have pagecontext value in the EO create method.
    As far as my knowledge goes, such gaps are okay. Most of the times if a user navigates to the create screen, the data would be created. Only very few of those transactions would be lost.
    Regards
    Sumit

  • JDK 8u40 Early Access Release - Build b12 - java.util.MissingResourceException

    Hi guys,
    we are developing a Java Web Start application which uses SOAP services and we get the following exception if we try to start our application with the current JDK 8u40 Early Access Release.
    java.lang.ExceptionInInitializerError
      at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
      at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
      at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
      at java.lang.reflect.Constructor.newInstance(Unknown Source)
      at java.lang.Class.newInstance(Unknown Source)
      at javax.xml.soap.FactoryFinder.newInstance(Unknown Source)
      at javax.xml.soap.FactoryFinder.find(Unknown Source)
      at javax.xml.soap.FactoryFinder.find(Unknown Source)
      at javax.xml.soap.SAAJMetaFactory.getInstance(Unknown Source)
      at javax.xml.soap.MessageFactory.newInstance(Unknown Source)
      at com.sun.xml.internal.ws.api.SOAPVersion.<init>(Unknown Source)
      at com.sun.xml.internal.ws.api.SOAPVersion.<clinit>(Unknown Source)
      at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.parseBinding(Unknown Source)
      at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.parseWSDL(Unknown Source)
      at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.parseImport(Unknown Source)
      at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.parseImport(Unknown Source)
      at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.parseWSDL(Unknown Source)
      at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.parse(Unknown Source)
      at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.parse(Unknown Source)
      at com.sun.xml.internal.ws.wsdl.parser.RuntimeWSDLParser.parse(Unknown Source)
      at com.sun.xml.internal.ws.client.WSServiceDelegate.parseWSDL(Unknown Source)
      at com.sun.xml.internal.ws.client.WSServiceDelegate.<init>(Unknown Source)
      at com.sun.xml.internal.ws.client.WSServiceDelegate.<init>(Unknown Source)
      at com.sun.xml.internal.ws.client.WSServiceDelegate.<init>(Unknown Source)
      at com.sun.xml.internal.ws.client.WSServiceDelegate.<init>(Unknown Source)
      at com.sun.xml.internal.ws.spi.ProviderImpl.createServiceDelegate(Unknown Source)
      at javax.xml.ws.Service.<init>(Unknown Source)
    Caused by: java.util.MissingResourceException: Can't find com.sun.xml.internal.messaging.saaj.soap.LocalStrings bundle
      at java.util.logging.Logger.setupResourceInfo(Unknown Source)
      at java.util.logging.Logger.<init>(Unknown Source)
      at java.util.logging.LogManager$SystemLoggerContext.demandLogger(Unknown Source)
      at java.util.logging.LogManager.demandSystemLogger(Unknown Source)
      at java.util.logging.Logger.demandLogger(Unknown Source)
      at java.util.logging.Logger.getLogger(Unknown Source)
      at com.sun.xml.internal.messaging.saaj.soap.SAAJMetaFactoryImpl.<clinit>(Unknown Source)
      ... 45 more
    As you can see, the exception will be thrown when we try to initialize our Service class which uses the Service(java.net.URL paramURL, javax.xml.namespace.QName paramQName) constructor of the javax.xml.ws.Service class.
    The problem exists only in case of Java Web Start and since Java 8u40. The exception will not be thrown if I start our application in eclipse.
    Is this a known bug? I haven't found a related bug in the bug-database.
    Thanks in advance!
    Best Regards Steve

    Am I the only one with that problem?

  • Early Access File Syncing

    I have received an email message advising that I have been given early access to the Files syncing feature of the Adobe CC application.
    However, clicking on the Files tab does not show a workable interface, only the old "Coming Soon" statement. I have downloaded and installed the latest version of the CC application onto my Apple MacPro, but clicking on the "Files" tab does not show a window that looks like anything shown on the FAQ sample page discussing the file sharing function.
    Any assistance would be appreciated. Thanks.

    Hallo Vikas,
    First of all, to answer your question, yes, I only have one Adobe ID.
    The problem has been solved, since the Files tab in my Adobe CC application started functioning normally yesterday.
    Thanks for looking into this.
    Regards,
    Larry.
    Sent from my iPad

  • Oracle9iAS Java Process Manager

    Hi anyone...
    i have a security issue on --> possible to access Oracle9iAS Java Process manager anonymously. The security people suggest to restrict access to /oprocmgr - status in httpd.conf, but not sure how and where to do this.
    Please advice
    Thanks
    Mahani

    Hi Mahani,
    You can try this in your HTTPD.Conf File :-
    <Location /oprocmgr-status>
    Deny from all
    </Location>
    Regards,
    Sandeep

  • Need to deny access to file manager for the user

    Hi
    I need to be able to deny access to the file manager, as I dont want my client deleting files. however, for some reason I have to allow him access to this as he needs to be able to upload files through InContext Editor (he needs to link pages to documents that are not on the server so he needs to upload them and to do this, I have to grant him access to file manager).  How can I get around this?  I dont want to have to reupload his site every time he deletes a file....

    Unfortunately it can't be done - access to the file manager allows deleting as well as uploading and at this point that cannot be changed.

  • File Manager access problem

    So I am really confused on this subject...
    I have the Creative Cloud subscription, therefore I have a webBasics site. It says on the Business Catalyst pricing page that with the webBasics package it comes with access to the file manager... But when I login to my Admin Console I cant find the file manager anywhere. Why is this? Is there something I am not seeing?

    With that how Muse works, while it has been updated to be better it basically handles the files. Allowing managing files on the admin side can cause conflicts when you do changes in Muse. So it is disabled by default.
    I think the option to turn it on is under site settings somewhere, I forget where as we are full partners and do not use Muse.

  • N97 freezing up - unable to access file manager/co...

    I don't know if anyone can help me ... My n97 was working fine uptil yesterday! however, this morning it kept getting stuck e.g. not able to see the photos, accessing apps, or file manager. Now even the four contacts I have on my home screen aren't showing ... or rather one isn't the other three are horribly blurred images!
    I've tried giving a hard reset which it did but it's still not working. I'm trying to uninstall some apps I don't need but it freezes up every single time. When I try to access file manager it gets stuck showing "opening". I can't access my messages because it freezes.
    I've got a feeling its something to do with the phone memory. I've recently updated to the new firmware version 11 ... however I've found out it's gotten slower!
    Please can someone help me ... I'm going crazy I simply can't use my fone!
    Solved!
    Go to Solution.

    Can anyone help????
    I purchased a Nokia N97 approx 6 weeks ago, I am now up to handset number 4 and am about to take it back AGAIN!!!
    I am continuously having problems with the phone freezing, black/blue screens, "unable to use/access functions" coming up on screen, when switching off phone it goes through all the applications I have had opened before it turns off, just to name a few.
    These are just a few issues that I have been having and continue to have with the handsets. I love using the N97 and am quite happy to keep using it, but am starting to think it is not a reliable phone at all and unfortunately I signed up to a 2 year contract.
    I have gone online on numerous occasions and checked for software updates and nothing comes up on my phone, so I assume that the phone has the latest software. If anyone has any solutions to my problems can you please let me know as I am not gettig any help from Nokia or my service provider.
    Thank you

  • New Release of AJAX and Java Petstore 2.0, Early Access 3

    Hi all,
    the BluePrints team has just released a new version of the Java Petstore 2.0. This AJAX petstore shows how to build AJAX enabled applications on the Java EE platform. It has a lot of emerging web use cases like using a CAPTCHA, uploading user images and content, integrating custome search into your application, mashing up with other services such as google maps, building an AJAX UI, and more.
    It also has added a new feature showing how to add tagging to an application.
    Plus it shows how to leverage Java technologies like Servlets, JSF, and the new Java Persistence APIs.
    Its a great resource to learn how to put it all together!
    You can download the Early Access 3 version at
    https://blueprints.dev.java.net/petstore/
    hth,
    Sean

    Hi,
    The Java Petstore 2.0 has a CAPTCHA (see http://en.wikipedia.org/wiki/Captcha for the definition of a CAPTCHA) which is used when a user is uploading a pet for sale to the petstore. The captcha is used to avoid automated graffiti on the community driven content of the petstore. The captcha requires a human to look at the image and type in the words, so it shows this common use case where web sites want to avoid an automated program from being able to post to a site.
    All the source code for the captcha is included in the petstore download at
    https://blueprints.dev.java.net/petstore/ This is useful code to use in your own applicatons as captchas are becoming more common in web applications
    Yutaka Yoshida has a blog entry that discusses the captcha at
    http://blogs.sun.com/yuta/
    hth,
    Sean

  • Creator Early Access SDK Level

    Hi
    I downloaded Sun Java Studio Creator 2 Early Access 2. Now I tried to set the source level to 1.5 to support tiger but it always go back to 1.4. Below is how I set the source level to JDK 1.5:
    I select the project and right click to select properties. I select Source from categories (left pane) and select 1.5 from the Source Level drop down in the bottom section of the right pane.
    However, it does not seems to accept that selection and the tool keeps defaulting to Source Level 1.4. And I still get error highlight for 1.5 code syntax support in my Java class.
    Any help to resolve this will be appreciated. Or is it that Sun Java Studio Creator 2 Early Access 2 does not support Source Level 1.5?
    Bisi

    You might want to post that to the Creator 2 EA forum instead of here.
    That forum is at: https://feedbackprograms.sun.com/login.html?ref=%2Fhome%2Ehtml%3F

  • Project Conventions for J2EE Apps Early Access...

    Hi
    I am trying to set up a standardized directory structure for J2EE apps that is flexible enough from a simple webapp to a complex J2EE App with multiple EJB components, WARs...etc..etc...
    For this, I turned to Java Blueprints Guidelines, Project Conventions for Enterprise Applications Early Access 1 posted on the Sun's web site...
    This document states among follwoing that (quote)
    -----(quote)
    These conventions, which the Java BluePrints team has followed with its applications (which can be accessed from http://java.sun.com/blueprints/code/index.html), assume that developers use the Ant tool for building projects. Developers using other build tools may have to make slight modifications to the conventions.
    ----(end quote)
    I have downloaded the latest J2EE SDk which has samples directory containing the famous , Adventure BUilder, Petstore, etc, etc.....But they do not follow project directory structure as outlined in this document...Moreover, I found each app has different project directory structure even for the same functional part..
    1. Are the J2EE sample apps bundeled with J2EE SDK different than the ones available as separate download?
    2. If they are not, where can I download sample apps that demonstrate project conventions outlined in the guidelines document...
    Any comments are welcome...
    Thanks
    zambak

    Hi,
    The project conventions are new and early access version1. So it will be changing a little bit and as a result the apps may get a little out of sync. We are currently switching the apps over to match with the project conventions. For an app that dempnstrates project conventions, please see the adventure builder on java.net at https://adventurebuilder.dev.java.net/
    We are working on a revised version of the project conventions, so your feedback/comments would be highly appreciated.
    -Smitha
    Hi
    I am trying to set up a standardized directory
    structure for J2EE apps that is flexible enough from a
    simple webapp to a complex J2EE App with multiple EJB
    components, WARs...etc..etc...
    For this, I turned to Java Blueprints Guidelines,
    Project Conventions for Enterprise Applications Early
    Access 1 posted on the Sun's web site...
    This document states among follwoing that (quote)
    -----(quote)
    These conventions, which the Java BluePrints team has
    followed with its applications (which can be accessed
    from http://java.sun.com/blueprints/code/index.html),
    assume that developers use the Ant tool for building
    projects. Developers using other build tools may have
    to make slight modifications to the conventions.
    ----(end quote)
    I have downloaded the latest J2EE SDk which has
    samples directory containing the famous , Adventure
    BUilder, Petstore, etc, etc.....But they do not
    follow project directory structure as outlined in this
    document...Moreover, I found each app has
    different project directory structure even for the
    same functional part..
    1. Are the J2EE sample apps bundeled with J2EE SDK
    different than the ones available as separate
    download?
    2. If they are not, where can I download sample apps
    that demonstrate project conventions outlined in the
    guidelines document...
    Any comments are welcome...
    Thanks
    zambak

  • Oracle ADF Faces Components, Early Access Release 8 is now available

    Oracle ADF Faces is a rich set of user interface components based on the new JavaServer Faces JSR (JSR-127). Oracle has been actively involved in this JSR since its beginning. The Oracle ADF Faces Components provide various user-interface components with built-in functionality - such as data tables, hierarchical tables, and color and date pickers - that can be customized and re-used in your application.
    ADF Faces also includes many of the framework features most needed by JSF developers today:
    * File upload support is integrated at a component level.
    * Client-side validation is automatically derived from Validators and Converters for an improved user experience.
    * A pageFlow scope makes it easier to pass values from one page to another.
    * A new hybrid state saving strategy gives developers the best of both client and server-side state saving.
    ADF Faces ensures a consistent look and feel for your application, allowing you to focus more on user interface interaction rather than look and feel compliance. The components support multi-language and translation implementation as well as accessibility features. ADF Faces Components use Partial Page Rendering (PPR) offering superior runtime interactivity. PPR allow the browser to just render a piece of a page instead of the entire page.
    The intention with this early access release is to give developers/architects an opportunity to evaluate JSF and Oracle's JSF component offering.
    Oracle ADF Faces Components can be used in any IDE that support JSF, including Oracle JDeveloper 10g.
    Oracle ADF Faces Components, EA8

    Jonas,
    It works if I include the following:
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    The source is now:
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/EA8" prefix="af"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ page contentType="text/html;charset=windows-1252"%>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>untitled</title>
    </head>
    <body>
    <f:view>
    <af:outputText value="hello ADF Faces!"/>
    </f:view>
    </body>
    </html>
    Did I feel out something in my library entry?
    Thanks.

Maybe you are looking for

  • Quick question about SATA 2

    Hi, Very quick question, Are the newer SATA2 Hard Disks compatible with the older model of the Mac Pro? May sound stupid, but I believe that the Mac Pro was released before the SATA 2, so just wanted to check the Mac Pro hardware etc will take SATA 2

  • How do you clear the Camera RAW settings?

    When opening a photo in Bridge, the photo opens in it's original state but then Bridge quickly applies settings to it and it looks darker. How do I stop this from happening? Can I easily turn it off and on? I tried Edit>Apply Camera RAW Settings>Clea

  • HOW DO I IMPORT PHOTOS FROM MY EMAIL TO MY MAC? Please!!!

    How do I import photos from my email account to my mac?

  • Subscriptions on Multiple iPads

    I can't get a straight answer to this. My wife and I both have iPads, and we share an iTunes account on both, so that we can share the apps we buy and for ease of data transfer. I bought a one-year subscription to "The Daily" - which worked fine for

  • Total Java compiler problem confusion

    I am seeking some help and advice from those of you who use Java either as their first choice language or use it most of the time. I am using Microsoft Visual J++ 6.0 after being given it free. I have also just done a Java programming home course. I