Update git submodules
[LibreOffice.git] / reportbuilder / java / org / libreoffice / report / pentaho / model / ObjectOleElement.java
blobddd74bd8bcc61243500d110c068d17e350bcbc24
1 /*
2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 package org.libreoffice.report.pentaho.model;
20 import java.util.ArrayList;
21 import java.util.List;
23 public class ObjectOleElement extends ReportElement
26 private String url;
27 private final List<String> masterfields;
28 private final List<String> detailfields;
29 private String classid;
31 public ObjectOleElement()
33 masterfields = new ArrayList<String>();
34 detailfields = new ArrayList<String>();
37 public String getClassid()
39 return classid;
42 public List<String> getDetailfields()
44 return detailfields;
47 public List<String> getMasterfields()
49 return masterfields;
52 public String getUrl()
54 return url;
57 public void setClassId(final String classid)
59 this.classid = classid;
62 public void setUrl(final String _url)
64 url = _url;
67 public void addMasterDetailFields(final String master, final String detail)
69 if (master != null)
71 masterfields.add(master);
72 detailfields.add(detail == null ? master : detail);