Define custom typed collection class

Hi, I would like to define a custom typed collection class that can hold multiple type elements, to be more concrete, i have a class defined as
public class MyList extends ArrayList{
public class TestMyList{
    MyList<MyDataTypeOne> listOne; // i want to use JAVA generics here, but it wont let me
    MyList<MyDataTypeTwo> listTwo;
}and i got an error saying: "MyList" does not have typed parameters.
I understand that i need to declare my class as something like
public class MyList<MyDataTypeOne> extends ArrayList
but i dont want it to be restricted to <MyDataTypeOne> but multiple types, just like ArrayList. How can i cope with this please, thanks!

Test the following code:
import java.util.ArrayList;
public class MyList<E> extends ArrayList<E>{
     public MyList()
     public static void main(String[] args) {
          MyList<String> lista = new MyList<String>();
          lista.add("Bolivia");
          String x = lista.get(0);
          System.out.println(x);
}

Similar Messages

  • Custom reg-exp classes?

    Does anyone know of a way to define custom regular expression classes in Java? For example, they have \p{Upper} for uppercase alpha chars. What I'd like to be able to do is create user-defined type that I could use within several more complex expressions instead of typing the whole long base again.
    \p{MyBase} = [A-Z]{1,4}|[A-Z]{4}[A-Z&&[^X]]
    then use it like
    \p{MyBase}\\.[A-Z]{1}
    \p{MyBase}/[A-Z]{1}
    \p{MyBase}-[A-Z]{1}
    (I know I could do ORs for the 3 situations, but I need to determine them separately.)
    thanks

    The only Java regex tool I know of that includes this capability is the stevesoft package. The best you can do with the JDK regex package is to build the regex from String fragments as needed, which isn't much of a solution.

  • Custom worklist decorator class not working

    hi , i was trying out the worklist customization as described in http://download.oracle.com/docs/cd/E13154_01/bpm/docs65/workspace_customization/index.html. however it is not working. any ideas as to what might be wrong...
    my custom mworklist decorator class is almost the same as that described in the example -
    package customization;*
    import fuego.lang.Interval;*
    import fuego.lang.Time;*
    import fuego.papi.InstanceInfo;*
    import fuego.papi.Presentation;*
    import fuego.papi.VarDefinition;*
    import fuego.workspace.model.view.WorkListDecorator;*
    import java.util.Locale;*
    public class CustomWorkListDecorator*
    +implements WorkListDecorator {+*
    +public String getRowStyle(String viewId, InstanceInfo instanceInfo, int rowIndex) {+*
    return  "background-color:Red" ;*
    +}+
    public String getCellStyle(String viewId, InstanceInfo instanceInfo,*
    +Presentation.Column column, int rowIndex) {+*
    return null;*
    +}+
    public String getValue(String viewId, InstanceInfo instanceInfo, Presentation.Column column,*
    +Locale locale, String currentValue, int rowIndex) {+*
    String result = currentValue;*
    +if (column.getId().equals(VarDefinition.RECEIVED_ID)) {+*
    Time receptionTime = instanceInfo.getReceptionTime();*
    Time today = Time.now();*
    +if (receptionTime.getDate().equals(today.getDate())) {+*
    Interval relativeTime = Time.sub(today, receptionTime);*
    int relativeHours = relativeTime.getHoursOnly();*
    int relativeMinutes = relativeTime.getMinutesOnly();*
    String relativeTimeString = relativeHours > 0 ? relativeHours " h " + relativeMinutes + " m" :+*
    relativeMinutes " m";+*
    result = "<table><tr><td nowrap class=bpmWorkspaceNormalText>" +*
    +"<img src='/workspace/img/time.gif'/> Today " ++
    +"(" + relativeTimeString + " ago)</td></tr></table>";+
    +}+
    +}+
    return result;*
    +}+
    +}+

    my workspace.prop file content--\
    +#+
    +#+
    +#+
    +#--------------------+
    +# Directory Settings+
    +#--------------------+
    +# The directory ID that identifies the directory ALBPM WorkSpace connects to.+
    fuego.workspace.DIRECTORY_ID=default
    +# Specifies a remote location for the directory configuration file.+
    +#remote.config.url=http://forums/remoteConfig/directory.xml+
    +# The PRESET ID WorkSpace uses to authenticate against the servlet container.+
    fuego.workspace.container-auth.directory.preset=container-auth
    +#--------------------+
    +# WorkSpace Settings+
    +#--------------------+
    +# Not used in this version.+
    fuego.workspace.autoRefreshMenuOption=false
    +# Not used in this version.+
    fuego.workspace.refreshTimeMin=1
    +# Enables debug mode.+
    fuego.workspace.debug=false
    +# WorkSpace HTTP debugger port.+
    fuego.workspace.debuggerPort=9007
    +# WorkSpace bean helper. This class should implement the interface fuego.workspace.adapter.WorkspaceBeanHelper.+
    fuego.workspace.bean.helper.className=fuego.workspace.adapter.DefaultWorkspaceBeanHelper
    +# Enables Cookie Persistence for panel preferences+
    +# (Only supported for view selections)+
    fuego.workspace.cookie.persistence.enabled=false
    +# Specifies the timeout period in seconds, between client requests.+
    +# If not specified the default value is 45 minutes.+
    +#fuego.workspace.sessionTimeOut=2700+
    +#---------+
    +# Logging+
    +#---------+
    +# Specifies the level of detail of the information stored in the ALBPM logs.+
    fuego.log.workspace.severities=fatal,severe,warning,info,debug
    +# The detail level filters messages that correspond to the same severity. It can vary from 1 to 10.+
    +# The default detail level is 5.+
    fuego.log.workspace.detailLevel=10
    +# The location where the log files are stored.+
    fuego.log.workspace.file=E:/oracle_bpm/log/workspace.log
    +# Defines the format of the information of the first line of a log entry.+
    +fuego.log.workspace.format='[<{SEV}> 'MMdd HH:mm:ss.SSS'] {MOD} ({THR}): {INDENT}{MSG}'+
    +# Defines the format of the information of the lines that follow the first line in a log entry.+
    +fuego.log.workspace.continuationFormat='[     (cont)     ] {MOD}: {INDENT}{MSG}'+
    +# Enables OpenLog (PTSpy remote debugging)+
    fuego.workspace.enableOpenLog=true
    +#------------------------------+
    +# Process Execution Properties+
    +#------------------------------+
    +# If the current activity has the autocomplete property set to true, execute the next activity if the current user has+
    +# the required role to do so.+
    fuego.workspace.execution.performNextActivity=false
    +# Waiting time for Automatic activities in a screenflow in milliseconds. If an activity exceeds this time, the+
    +# screenflow is aborted.+
    fuego.workspace.execution.waitForAutomatics=3000
    +# Display external activities in a pop up window.+
    fuego.workspace.execution.external.newWindow=
    +#-----------------------+
    +# Process API Settings+
    +#-----------------------+
    +# Number of instances in PAPI cache.+
    +# If not defined the default value is 200.+
    fuego.workspace.papi.instancesCacheSize=10000
    +# Maximum number of participants that the API will return when performing a single query.+
    +# If not defined the default value is 500.+
    fuego.workspace.papi.maxParticipants=500
    +#----------------+
    +# Single Sign On+
    +#----------------+
    +# Enables Single Sign On (SSO).+
    fuego.workspace.enableSSO=false
    +# Custom SSO class full name. This class must implement fuego.workspace.security.SSOWorkspaceLoginInterface.+
    fuego.workspace.SSO.loginClassName=fuego.workspace.security.SSOWorkspaceLogin
    +#-------------------------+
    +# WorkSpace Customization+
    +#-------------------------+
    +# CSS file that defines ALBPM WorkSpace style.+
    fuego.workspace.stylesheet=bpmworkspace.css
    +# Image bundle file.+
    fuego.workspace.imageBundleFile=ImagesBundleSet1
    +# JSP bundle file.+
    fuego.workspace.jspBundleFile=JSPBundle
    +# Help bundle file.+
    fuego.workspace.helpBundleFile=HelpBundle
    +# Custom messages bundle file.+
    +#fuego.workspace.customMessageBundle=MyMessageBundle+
    +# Enables WorkSpace edition mode.+
    fuego.workspace.enableEditMode=true
    +# Enables WorkSpace listeners configuration.+
    fuego.workspace.enableConfigurableListenerMode=true
    +# Enables WorkSpace layout edition.+
    fuego.workspace.enableLayoutEdition=true
    +# Custom Work List Panel Decorator.+
    fuego.workspace.worklist.styleResolverClassname=customization.WorkListDecoratorImpl
    +# Custom Work List Bulk Operations.+
    +#fuego.workspace.worklist.customOperationClassname=fuego.workspace.example.MyWorkListCustomOperations+
    +# Length of the description and filename column in the Attachments table, in characters.+
    fuego.workspace.attachments.contentLength=12
    +# Theme used to display process images and activity icons.+
    +# Available values: Classic, BPMN, ColorBPMN, BusinessAnalyst and UML+
    fuego.workspace.processImageTheme=ColorBPMN
    +# Default execution type for Applications and Work List panels.+
    +# Possible values: DIALOG, POPUP+
    fuego.workspace.defaultExecutionType=DIALOG
    +# Specifies if execution dialogs are displayed maximized.+
    +# If set to false, it uses the defined width and height.+
    fuego.workspace.executionDialog.maximize=false
    +# Execution dialog width.+
    fuego.workspace.executionDialog.width=500
    +# Execution dialog height+
    fuego.workspace.executionDialog.height=600
    +# Execution popup width.+
    fuego.workspace.popupWindows.width=800
    +# Execution popup height.+
    fuego.workspace.popupWindows.height=600
    +# Defines the WorkSpace search scope policy.+
    +# Possible values: ALL, ALL_IN_ROLE, PARTICIPANT_ROLES, PARTICIPANT+
    +# Multiple policies should be separated with commas. The first value is WorkSpace default selection.+
    +# If not defined WorkSpace uses ALL policy.+
    +#fuego.workspace.search.rolePolicyScopes=ALL,ALL_IN_ROLE,PARTICIPANT_ROLES,PARTICIPANT+
    +# Enables AJAX execution for interactive components.+
    fuego.workspace.execution.ajax.enabled=true
    +# Enables Views edition.+
    fuego.workspace.views.editable = true
    +# Orientation of the audit trail process image.+
    +# Possible values: auto, vertical, horizontal.+
    fuego.workspace.auditTrail.processImageOrientation=auto
    +# Show bookmarks column+
    fuego.workspace.showBookmarksColumn=true
    +# Filters case sensitive property default value.+
    fuego.workspace.filter.caseSensitive=false
    +#-----------------------+
    +# RSS Feeds Application+
    +#-----------------------+
    +# Enables Feeds link in WorkSpace.+
    fuego.workspace.feedLinkEnabled = true
    +# Enables URL guessing for the RSS Feeds application.+
    fuego.workspace.feedUrlGuessing = true
    +# RSS feed URL. If guessing is not enabled this URL is used.+
    fuego.workspace.feedUrl=http://localhost:8080/feeds/
    +#------------------------------+
    +# WorkSpace Extension Settings+
    +#------------------------------+
    +#ALBPM WorkSpace Extension wizard uses the following properties to store configuration properties.+
    +# YOU MUST NOT MODIFY THEM MANUALLY.+
    fuego.workspace.imageServer=
    fuego.workspace.enableWE=false
    fuego.workslace.collaboration.supportedLanguages=af, sq, ar, eu, be, bn, bg, ca, zh_CN, zh_TW, kw, hr, cs, da, nl, en, eo, et, fo, fi, fr, gl, de, el, he, hi, hu, is, id, ga, it, ja, kl, ko, lv, lt, mk, mt, gv, mr, nb, nn, fa, pl, pt, ro, ru, sr, sk, sl, es, sw, sv, ta, te, th, tr, uk, vi
    +# DO NOT REMOVE THIS LAST LINE+

  • Custom page controller class

    Hello,
    I'm trying to implement what is explained in the article *"Two Ideas to Handle JBO-35007 'Row Currency Changed' Exception"* (http://blogs.oracle.com/smuenchadf/examples/). This example illustrates how to use a custom page controller class to override the handleError() method to conditionally handle the JBO-35007 exception ('Row currency has changed since the user interface was rendered.') in a way that might be more useful to the end-user.
    So I've defined a custom page controller class in a JSP of my application, but I don't know why the application flow is not passing through the handleError method when a JBO-35007 exception occurs.
    I've defined well in the pagedef the attribute "ControllerClass", and I use the "back button" to produce the JBO-35007 exception. But I don't know why the method handleError is not executed, although the the JBO-35007 exception is displayed.
    Thank you very much.

    Hi,
    you are on JDeveloper 11g ? The article you follow was written for 10.1.3. In 11g the error handling is configured in DataBindings.cpx page. Select the DataBindings.cpx page in the Application Navigator and select its root node in the Structure Window. Then open the Property Inspector to configure your version of the Error Handler class
    Frank

  • Where does Designer stores user defined custom colors?

    Hi,
    Everytime I restart Designer, all my custom colors are reset to white. Which is pretty annoying. So I want to export them to a file at least.
    I figured, that user defined custom colors in Windows are stored in the Registry in:
    [HKEY_CURRENT_USER\Control Panel\Custom Colors]
    or alternatively in:
    [HKEY_USERS\.DEFAULT\Control Panel\Colors]
    But apparently they are not. Changes made to the custom color palette in Designer are not stored in the registry. Those values still remain FFFFFF.
    Does anyone know, where Designer stores user defined custom colors? Is there a 'secret' undocumented .ini-file I missed?
    Regards,
    Steve

    Does anyone know where the information added by Java reside?Essentially, in the directory.
    Is there any way to query this information using VC++ dll or some other way?Yes, there are operating system APIs for it. That's how Java does it.
    Does anyone know which windows dll or classes are used by Java to add these custom attributes
    I tried lot by digging into code by decompiling java NIO classes but could not get it.I would try looking up the Windows API myself.

  • N00b query: Why would anyone ever want to define their own Exception class?

    I've been reading thru my Java textbook for the past couple hours.
    Exceptions are a wonderful thing. I already found several instances where I could've implemented try/cacth in my earlier programs.
    Anyway, getting back to the point. My question is, can someone give me a realistic situation/example where a custom Expcetion class is REQUIRED? (the key word here is "required"!)
    I can see why someone would want to have his own Exception class..... e.getMessage() as custom error messages are SO DAMN COOL!!!!!! :P
    hehe
    But seriously, if you are making intermidiate/advanced Java programs, would you ever REQUIRE to make your own Exception class? Afterall, even a custom made Exception class always "extends" from a pre-defined Java class, right?
    Let me make this a bit more clear... public class CustomException extends IOException{  }Now, if I am making a try/catch statement, I can simply say
    try{
    throw new CustomException;
    catch (IOException e) { }
    Now as you can see, the CustomException was caught by the catch claus, because IOException is the superclass of CustomException. So, in other words, the whole CustomException thingy didnt do anything useful.
    I know I know, I am so naive. Enlighten me >.<

    Sure. Say you want to have a system where you want to include a custom error code which maps to some internationalized error messages. You would create an Exception subclass with a field to hold that value separate from the normal "default" message. Then you could throw that exception in all your code. Other code can catch it as a plain Exception if they want and use the "default" message, which is okay if they don't really care about the error code.
    I don't think you are ever "required" to make your own exceptions. I have done so, but I don't often. It depends. See, there are plenty of Exception subclasses in the standard packages, and most of them cover many of the things you need. So more often if I'm throwing an exception, I'll be using the already existing ones, like IllegalArgumentException or IOException (whatever is relevant to the code).
    Yes, you can do what you did below with CustomException. However the reason you might do that is cuz you really want to do this:
    try {
       // call some code that may throw IOException from some standard IO package
       // or may throw CustomException from some of my methods...
    } catch (CustomException ce) {
       // handle cusotm exception
    } catch (IOException ioe) {
       // handle IO exception
    }Cuz you may want to differentiate between your exceptions vs. IOExceptions that might be thrown from some java.io class.
    Usually when you use an exception class it's a named class that relates to some condition. It may hold additional information besides the standard message, but I think most of the time it's just the class name which describes the problem. And if there isn't one that describes the problem that you're code might encounter, then create a subclass.

  • I defined custom action but it is not running properly.

    Hi,
    I defined custom action but it is not running properly.
    I deployed in MII (System Management --> Custom Actions)
    When i use it as an action in a transaction error below generated.
    Errors
    [ERROR]: STEP EXCEPTION (Custom_Action_0) : Item 'Custom_Action_0' is not an Action
    [ERROR]: STEP EXCEPTION (Custom_Action_0) : Item 'Custom_Action_0' is not an Action
    Custom action code is below.
    package com.wipro.action;
    import com.sap.xmii.xacute.actions.ActionReflectionBase;
    import com.sap.xmii.xacute.core.ILog;
    import com.sap.xmii.xacute.core.Transaction;
    @author cemil.bozlagan
    public class CustomAction extends ActionReflectionBase {
        private String strFirstInput;
        private String strSecondInput;
        private String strOutString;
        public CustomAction() {
            strFirstInput = "";
            strSecondInput = "";
            strOutString = "";
        @Override
        public String GetIconPath() {
            return "/com/wipro/action/resources/icons/CustomAction.png";
        @Override
        public void Invoke(Transaction trx, ILog ilog) {
            try {
                strOutString = strFirstInput + strSecondInput;
                // This varaible is defined in ActionReflectionBase class
                _success = true;
            } catch (Exception e) {
                _success = false;
        public String getFirstInput() {
            return strFirstInput;
        public void setFirstInput(String strFirstInput) {
            this.strFirstInput = strFirstInput;
        public String getSecondInput() {
            return strSecondInput;
        public void setSecondInput(String strSecondInput) {
            this.strSecondInput = strSecondInput;
        public String getOutString() {
            return strOutString;
        @Override
        public boolean isConfigurable() {
            return false;
    How can i solve this problem?
    Thanks.

    Hi Cemil,
    Pls check document, I hv sent to your mail.
    May be it helps.
    Regards
    Padma

  • Strongly typed collection w genertics

    I just started looking at the new features of 1.5, and generics specifically.
    My question is, can I create a strongly typed collection using generics.
    Assuming I have a java object call Car and want to have a collections of cars. I could do:
    ArrayList cars = new ArrayList<Cars>();But what I would rather do is have the generic done within the collection class so that I just call:
    CarCollection cars = new CarCollection();Thanks

    Are you sure a Collection of Cars should know how to
    get the total horsepower. Now it sounds like there
    should be some other class that has a collection of
    cars. Most (and by that I mean all with a few
    exceptions) applications should never need a class
    that extends a Collection class.
    Most (and by that I mean all with a few
    exceptions) applications should never need a class
    that extends a Collection class.You cannot say that generally. Especially if you like the functional style of programming there are lots of nice things you can do with lists.
    What's wrong with having a ListOfCars class offering operations on car collections as a whole? Like summing up this or that, or returning a new list according to a selection criterium, etcetera. Either the list itself does this or it offers a set of functors and filters you can apply.
    A ListOfCars class represents a composite relationship. This doesn't mean it has to be implemented using composition (has-a). Design and implementation are separate things.

  • About Collections class

    The Collections Framework defines several algorithms that can be applied to collections
    and maps.These algorithms are defined as static methods within the Collections class.
    These algorithms support List,Map,Set,Enumeration,SortedMap,SortedSet.But not
    Iterator.
    Is it fixed by Java that no Iterator can use within any of those algorithms of Collections
    class?
    Or, Is it only Maps class support Iterator for it's algorithms?

    Thanks everybody for replies.
    import java.util.*;
    public class AlgorithmsDemo {
         public static void main(String[] args) {
              LinkedList<Integer> ll=new LinkedList<Integer>();
              System.out.println("Size of LinkedList ll: "+ll.size());
              System.out.println("Contents of LinkedList ll: "+ll);
              ll.add(-8);
              ll.add(20);
              ll.add(-20);
              ll.add(8);
              System.out.println("Now the size of linkedList ll: "+ll.size());
              System.out.println("Now the contents of linkedlist ll: "+ll);
              Comparator<Integer> comp=Collections.reverseOrder();
              Collections.sort(ll,comp);
              System.out.print("List sorted in reverse: ");
              for(int i:ll)
                   System.out.print(i+" ");
              System.out.println();
              Collections.shuffle(ll);
              System.out.print("List shuffled: ");
              for(int i:ll)
                   System.out.print(i+" ");
              System.out.println();
              System.out.println("Minimum: "+Collections.min(ll));
              System.out.println("Maximum: "+Collections.max(ll));
    }If I want to use Iterator instead of Comparator then what changes need to do
    within above code?

  • Creation of Customer master using CLASS( 'MAINTAIN_BAPI')..

    I am creating customer master by class 'MAINTAIN_BAPI'.  So all fields are sucessfully created except the field 'Remarks / Comments' on customer..Please suggest for the same as far as posiible..
    << Moderator message - Everyone's problem is important. But the answers in the forum are provided by volunteers. Please do not ask for help quickly. >>
    Edited by: Rob Burbank on Jul 18, 2011 10:06 AM

    Hi Yogesh,
    Hi,
    sorry to reply after the message closure.
    Maybe you will read it.
    SD_CUSTOMER_MAINTAIN_ALL is used in standard during the maintenance of a consumer using the standard customer master data transaction XD01 & XD02.
    It is not intended to be used out of the transaction and in no case it should be used out of its original context. Due to the specificity of the function module, out of the original context we may face limitations and data inconsistencies.
    For the maintenance of customers, there is NO BAPI and NO direct function module.
    There are some functions modules like the one above where the name is looking nice. But these should not be used.
    BAPI_CUSTOMER_CREATEFROMDATA1 is part of them. This one uses SD_CUSTOMER_MAINTAIN_ALL, so the above remark is still valid. Moreover, this BAPI is to be used only from process  SAP Product Catalog. Out of it and due to its limitation, a lot of troubles are expected.
    Sorry.
    Below ECC 2005 (6.00), the only solution was batch input and DEBMAS idocs. See [note 384462|https://service.sap.com/sap/support/notes/384462]
    Starting with ECC 2005 (6.00) and above: a synchronisation tool has been introduce. See class CMD_EI_API and VMD_EI_API
    Hope this helps.
    BR
    Alain

  • How can we define custom error page in protal application

    How can we define custom error page in protal application, like we define "jsp Error page " in JSPs

    Hi,
    Check these:
    Customization of Portal Runtime Errors and portal standard error codes
    http://help.sap.com/saphelp_nw04/helpdata/en/9a/e74d426332bd30e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/ec/1273b2c413b2449e554eb7b910bce7/frameset.htm
    Regards,
    Praveen Gudapati

  • Could not complete the define custom shape command because of program error

    I am using the pen tool to draw a shape and then select it to create a custom shape. I use path: edit - define custom shape = "could not complete the define custom shape command because of program error"
    The error message appears once I click the define button.

    Also, I solved this another way, seems to happen to me often. I click on the path panel, near layers panel and clicked on 'load path as a selection' (3rd icon on bottom from left), then click 'make work path from selection' (4th icon on bottom from left). Then you will see that the whole work area is part of the selection, including your desired shape/path. In order to change this, just select 'path selection' tool and highlight each corner and delete each point from each corner, then you are left with the desired selection to create a shape. I am self taught and this seem unorthodox, but it works.

  • When I click on Define Custom Shape, I get an error message: "could not complete your request because of a program error."

    I'm using Photoshop CC 2014. When I click on Define Custom Shape, there is an error box that says "could not complete your request because of a program error."  How can I solve this problem or work around it? I've looked on the internet for answers but could find no solutions to this. The custom shape tool is 99% of what I use!

    Consider resetting the Pen tool by right clicking here
    and if that doesn't solve the problem a logical next step would be to reset your Preferences.
    To reset Preferences:
    If Photoshop is already open on your screen, close it (Quit). Then hold down Shift+Ctrl+Alt (Win) / Shift+Command+Option (Mac) on your keyboard and start Photoshop.
    A dialog box will pop up asking if you want to delete the existing Preferences file (the "Settings"). Click Yes in the dialog box. The existing Preferences file will be scrapped and a new one will be created.
    By the way, if "The custom shape tool is 99% of what I use!" have you considered Illustrator?

  • Is there a HP color laser printer that can define custom-size media sizes in WINDOWS?

    Is there a  HP color laser printer that can define custom-size media sizes in WINDOWS?

    Have you tried downloading and installing the drivers from here?
    http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareDescription.jsp?lang=en&cc=us&prodTypeId=18...
    //Click on Kudos and Accept as Solution if my reply was helpful and answered your question//
    I am an HP employee!!

  • Define custom shape error in Photoshop CC 14.2.1

    whene I try to define Custom Shape I got this message

    Those errors are from February 7, so not helpful.  (and they were probably due to bugs in Generator that got fixed in 14.2.1).
    Hmm, not sure why you aren't getting an error logged.
    And I can't seem to get any errors when defining a custom shape.
    What sort of shape/path do you have selected?
    What sort of document are you using?

Maybe you are looking for

  • Issue with Payroll posting in FI

    Hello Friends,                      our company run a simulation run on payroll for the month of Jan 2008. things are perfect.. but after actual the posting of payroll, the posting is not correct. for example.. simulation run shows the total payroll

  • ADF Security Wizzard

    All, the ADF Security Wizzard adds the following line to my jsp-config.xml which results in an exception as soon as a BC4J-connection is opened: jsp-config.xml: <property value="doasprivileged" name="oracle.security.jps.jaas.mode"/> exception: oracle

  • IPhone 3GS Problem/Touch Controls no longer respond after random intervals

    Hi all, I need some answers regarding my iPhone 3GS 32gig, which was working perfectly until about a month ago, after I upgraded to firmware v3.1. The touch screen 'locks up' i.e. it won't accept any input via the screen and seems to happen at random

  • Use of Additional Parameters in JDBC Sender Adapter

    Hi - Can anybd tell me the Use of "Name, Value" Entries while setting the Additional Parameters in the Sender JDBC Adapter... And if is Same for All adapaters...what is the need of Setting Name-value pair in these Adapters?

  • No Wi-Fi or Bluetooth for I-Pod touch

    I have reset my I-Pod touch, but now the Wi-Fi and Bluetooth are greyed out. What now? I have performed a software reset and still the same result.