Package org.fenixedu.spaces.domain

Examples of org.fenixedu.spaces.domain.BlueprintFile


    private void setBlueprintTextRectangles(HttpServletRequest request, Space space) throws IOException {
        DateTime now = new DateTime();

        Space spaceWithBlueprint = getSuroundingSpaceMostRecentBlueprint(space);

        BlueprintFile mostRecentBlueprint = spaceWithBlueprint.getBlueprintFile().get();

        if (mostRecentBlueprint != null) {

            final byte[] blueprintBytes = mostRecentBlueprint.getContent();
            final InputStream inputStream = new ByteArrayInputStream(blueprintBytes);
            BlueprintTextRectangles blueprintTextRectangles =
                    SpaceBlueprintsDWGProcessor.getBlueprintTextRectangles(inputStream, spaceWithBlueprint, now, false, false,
                            true, false, null);
View Full Code Here

TOP

Related Classes of org.fenixedu.spaces.domain.BlueprintFile

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.