Hello, I have created fields, container and container List with these methods :
JahiaField TEST = ServicesRegistry.getInstance().getJahiaFieldService ().createJahiaField(888, 1, 79, 999, 550, 6, 0, "", 0 , 8880); JahiaContainer C = new JahiaContainer(999,2,79,777,547,25,5,8,9); C.addField(TEST); JahiaContainerList Clist= new JahiaContainerList(777, 2, 79, 5, 999); Clist.addContainer(C); I need to use Absolute Adressing with this Container and with this field. But I have not find the way to give a Name to the container and to the field during their creation. I would be really pleased if someone could give me the method to use to give a Name to the field, to the Container and to the ContainerList. Thanks.
