Package it.cilea.osd.jdyna.value

Examples of it.cilea.osd.jdyna.value.EmbeddedLinkValue


                            shortName, pe.getAsText(), attributes,
                            valuesAttributes);
                }
                if (prop.getTypo().getRendering() instanceof WidgetLink)
                {
                    EmbeddedLinkValue link = (EmbeddedLinkValue) pe.getValue();
                    List<String> attributes = new LinkedList<String>();
                    List<String> valuesAttributes = new LinkedList<String>();
                    attributes.add(NAMEATTRIBUTE_VISIBILITY);
                    valuesAttributes.add(prop.getVisibility().toString());
                    attributes.add(NAMEATTRIBUTE_SRC_LINK);
                    valuesAttributes.add(link.getValueLink());
                    ExportUtils.createCustomValueWithCustomAttributes(element,
                            shortName, link.getDescriptionLink(), attributes,
                            valuesAttributes);

                }
                if (prop.getTypo().getRendering() instanceof WidgetPointer)
                {
View Full Code Here


                                .getAnagraficaProperties().get(
                                        UtilsXML.GRANT_TAG_INVESTIGATOR);
                        for (ValoreDTO vv : investigatorDTO)
                        {

                            EmbeddedLinkValue link = (EmbeddedLinkValue) vv
                                    .getObject();
                            if (link != null)
                            {
                                if (link.getValueLink() != null
                                        && !link.getValueLink().isEmpty())
                                {
                                    dtoRG.getAnagraficaProperties()
                                            .put("principalinvestigator",
                                                    dtoNested
                                                            .getAnagraficaProperties()
                                                            .get("principalinvestigator")
                                                            );

                                }
                                else
                                {
                                    dtoRG.getAnagraficaProperties()
                                    .put("extprincipalinvestigator",
                                            dtoNested
                                                    .getAnagraficaProperties()
                                                    .get("extprincipalinvestigator")
                                                    );
                                }
                            }
                           
                        }
                        List<ValoreDTO> coinvestigatorDTO = dtoRG
                                .getAnagraficaProperties().get(
                                        UtilsXML.GRANT_TAG_COINVESTIGATOR);
                       
                        for (ValoreDTO vv : coinvestigatorDTO)
                        {
                           
                            EmbeddedLinkValue link = (EmbeddedLinkValue) vv
                                    .getObject();
                            if (link != null)
                            {
                                if (link.getValueLink() != null
                                        && !link.getValueLink().isEmpty())
                                {
                                    dtoRG.getAnagraficaProperties()
                                    .put("coinvestigator",
                                            dtoNested
                                                    .getAnagraficaProperties()
View Full Code Here

TOP

Related Classes of it.cilea.osd.jdyna.value.EmbeddedLinkValue

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.